Skip to content

Commit

Permalink
SelectorEngine: remove moot space
Browse files Browse the repository at this point in the history
  • Loading branch information
XhmikosR committed Jan 29, 2022
1 parent 558002f commit 0840105
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/src/dom/selector-engine.js
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ const SelectorEngine = {
'details',
'[tabindex]',
'[contenteditable="true"]'
].map(selector => `${selector}:not([tabindex^="-"])`).join(', ')
].map(selector => `${selector}:not([tabindex^="-"])`).join(',')

return this.find(focusables, element).filter(el => !isDisabled(el) && isVisible(el))
}
Expand Down

0 comments on commit 0840105

Please sign in to comment.