Skip to content

Commit

Permalink
Fixed #10859 - Failed to execute 'querySelectorAll' (not a valid sele…
Browse files Browse the repository at this point in the history
…ctor) error when tabbing out of calendar component
  • Loading branch information
yigitfindikli committed Nov 18, 2021
1 parent 5335f63 commit 77d14c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/components/dom/domhandler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -589,7 +589,7 @@ export class DomHandler {
[href][clientHeight][clientWidth]:not([tabindex = "-1"]):not([disabled]):not([style*="display:none"]):not([hidden]),
input:not([tabindex = "-1"]):not([disabled]):not([style*="display:none"]):not([hidden]), select:not([tabindex = "-1"]):not([disabled]):not([style*="display:none"]):not([hidden]),
textarea:not([tabindex = "-1"]):not([disabled]):not([style*="display:none"]):not([hidden]), [tabIndex]:not([tabIndex = "-1"]):not([disabled]):not([style*="display:none"]):not([hidden]),
[contenteditable]:not([tabIndex = "-1"]):not([disabled]):not([style*="display:none"]):not([hidden]:not(.p-disabled))`
[contenteditable]:not([tabIndex = "-1"]):not([disabled]):not([style*="display:none"]):not([hidden]):not(.p-disabled)`
);

let visibleFocusableElements = [];
Expand Down

0 comments on commit 77d14c9

Please sign in to comment.