mirror of
https://github.com/netbox-community/netbox.git
synced 2025-09-06 06:13:36 -06:00
Remove errant logging statements
This commit is contained in:
parent
5b18d88db0
commit
5cf8dc44ba
BIN
netbox/project-static/dist/netbox.js
vendored
BIN
netbox/project-static/dist/netbox.js
vendored
Binary file not shown.
BIN
netbox/project-static/dist/netbox.js.map
vendored
BIN
netbox/project-static/dist/netbox.js.map
vendored
Binary file not shown.
@ -70,11 +70,8 @@ export function initMoveButtons(): void {
|
||||
|
||||
// Move selected option(s) up in current list
|
||||
for (const button of getElements<HTMLButtonElement>('.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));
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user