Skip to content

Commit

Permalink
fix missing ")" on query selector (#432)
Browse files Browse the repository at this point in the history
  • Loading branch information
ph7jack authored Apr 12, 2024
1 parent d72eae8 commit 17b6159
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 17b6159

Please sign in to comment.