Skip to content

Commit

Permalink
Add missing semicolons to combobox.js
Browse files Browse the repository at this point in the history
  • Loading branch information
huntertur committed Dec 27, 2024
1 parent b2de552 commit eb06316
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions assets/js/combobox.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ class Combobox extends HTMLInputElement {

this.#popover.addEventListener('toggle', event => {
this.ariaExpanded = event.newState === 'open';
})
});

for (const option of this.list.children) {
const item = document.createElement('li');
Expand Down Expand Up @@ -134,7 +134,7 @@ class Combobox extends HTMLInputElement {
// ArrowRight: already handled by input element
// ArrowLeft: already handled by input element
}
})
});

this.#update(false);
this.style.transition = '';
Expand Down

0 comments on commit eb06316

Please sign in to comment.