We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a03f2b3 commit 960f927Copy full SHA for 960f927
packages/main/src/Select.js
@@ -579,8 +579,8 @@ class Select extends UI5Element {
579
580
get tabIndex() {
581
return this.disabled
582
- && this.responsivePopover // Handles focus on Tab/Shift + Tab when the popover is opened
583
- && this.responsivePopover.opened ? "-1" : "0";
+ || (this.responsivePopover // Handles focus on Tab/Shift + Tab when the popover is opened
+ && this.responsivePopover.opened) ? "-1" : "0";
584
}
585
586
get classes() {
0 commit comments