Remove errant logging statements

This commit is contained in:
Jeremy Stretch 2025-07-31 11:28:11 -04:00
parent 5b18d88db0
commit 5cf8dc44ba
3 changed files with 0 additions and 3 deletions

Binary file not shown.

Binary file not shown.

View File

@ -70,11 +70,8 @@ export function initMoveButtons(): void {
// Move selected option(s) up in current list // Move selected option(s) up in current list
for (const button of getElements<HTMLButtonElement>('.move-option-up')) { for (const button of getElements<HTMLButtonElement>('.move-option-up')) {
console.log(button);
const target = button.getAttribute('data-target'); const target = button.getAttribute('data-target');
console.log(target);
const target_select = document.getElementById(`id_${target}`) as HTMLSelectElement; const target_select = document.getElementById(`id_${target}`) as HTMLSelectElement;
console.log(target_select);
if (target_select !== null) { if (target_select !== null) {
button.addEventListener('click', () => moveOptionUp(target_select)); button.addEventListener('click', () => moveOptionUp(target_select));
} }