Skip to content

Commit 5cf8dc4

Browse files
committed
Remove errant logging statements
1 parent 5b18d88 commit 5cf8dc4

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed

netbox/project-static/dist/netbox.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

netbox/project-static/dist/netbox.js.map

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

netbox/project-static/src/buttons/moveOptions.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,11 +70,8 @@ export function initMoveButtons(): void {
7070

7171
// Move selected option(s) up in current list
7272
for (const button of getElements<HTMLButtonElement>('.move-option-up')) {
73-
console.log(button);
7473
const target = button.getAttribute('data-target');
75-
console.log(target);
7674
const target_select = document.getElementById(`id_${target}`) as HTMLSelectElement;
77-
console.log(target_select);
7875
if (target_select !== null) {
7976
button.addEventListener('click', () => moveOptionUp(target_select));
8077
}

0 commit comments

Comments
 (0)