Skip to content

Commit

Permalink
Add missing closing parenthesis
Browse files Browse the repository at this point in the history
  • Loading branch information
bcafuk committed Sep 27, 2022
1 parent 94c876b commit 50156ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/dropdown/element.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export default class Dropdown extends LitElement {
}

get tabbableElements() {
const tabbleMenuItems = this.dropdownContentElement.querySelectorAll('a[href], button, input, textarea, select, details, [tabindex]:not([tabindex="-1"]');
const tabbleMenuItems = this.dropdownContentElement.querySelectorAll('a[href], button, input, textarea, select, details, [tabindex]:not([tabindex="-1"])');

const filteredMenuItems = Array.from(tabbleMenuItems).filter(
element => !element.hasAttribute('disabled') && !element.getAttribute('aria-hidden')
Expand Down

0 comments on commit 50156ce

Please sign in to comment.