Skip to content

Commit 17b6159

Browse files
authored
fix missing ")" on query selector (#432)
1 parent d72eae8 commit 17b6159

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

resources/js/modal.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ window.LivewireUIModal = () => {
101101
});
102102
},
103103
focusables() {
104-
let selector = 'a, button, input:not([type=\'hidden\'], textarea, select, details, [tabindex]:not([tabindex=\'-1\'])'
104+
let selector = 'a, button, input:not([type=\'hidden\'], textarea, select, details, [tabindex]:not([tabindex=\'-1\']))'
105105

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

0 commit comments

Comments
 (0)