diff --git a/netbox/project-static/dist/netbox.js b/netbox/project-static/dist/netbox.js index 2877acb58..7572150d4 100644 Binary files a/netbox/project-static/dist/netbox.js and b/netbox/project-static/dist/netbox.js differ diff --git a/netbox/project-static/dist/netbox.js.map b/netbox/project-static/dist/netbox.js.map index b6ebd63dd..b794d3ce5 100644 Binary files a/netbox/project-static/dist/netbox.js.map and b/netbox/project-static/dist/netbox.js.map differ diff --git a/netbox/project-static/src/buttons/moveOptions.ts b/netbox/project-static/src/buttons/moveOptions.ts index f937530b4..a98bf732a 100644 --- a/netbox/project-static/src/buttons/moveOptions.ts +++ b/netbox/project-static/src/buttons/moveOptions.ts @@ -70,11 +70,8 @@ export function initMoveButtons(): void { // Move selected option(s) up in current list for (const button of getElements('.move-option-up')) { - console.log(button); const target = button.getAttribute('data-target'); - console.log(target); const target_select = document.getElementById(`id_${target}`) as HTMLSelectElement; - console.log(target_select); if (target_select !== null) { button.addEventListener('click', () => moveOptionUp(target_select)); }