Skip to content

Commit

Permalink
fix missing ")" on query selector
Browse files Browse the repository at this point in the history
  • Loading branch information
ph7jack authored Mar 29, 2024
1 parent d3761b3 commit cedf8fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/js/modal.js
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ window.LivewireUIModal = () => {
});
},
focusables() {
let selector = 'a, button, input:not([type=\'hidden\'], textarea, select, details, [tabindex]:not([tabindex=\'-1\'])'
let selector = 'a, button, input:not([type=\'hidden\'], textarea, select, details, [tabindex]:not([tabindex=\'-1\']))'

return [...this.$el.querySelectorAll(selector)]
.filter(el => !el.hasAttribute('disabled'))
Expand Down

0 comments on commit cedf8fa

Please sign in to comment.