We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 113ac77 commit c0cbc6aCopy full SHA for c0cbc6a
src/aria/private/behaviors/list-focus/list-focus.ts
@@ -84,15 +84,15 @@ export class ListFocus<T extends ListFocusItem> {
84
85
/** The tab index for the list. */
86
getListTabIndex(): -1 | 0 {
87
- if (this.isListDisabled()) {
+ if (this.isListDisabledFocusable()) {
88
return 0;
89
}
90
return this.inputs.focusMode() === 'activedescendant' ? 0 : -1;
91
92
93
/** Returns the tab index for the given item. */
94
getItemTabIndex(item: T): -1 | 0 {
95
96
return -1;
97
98
if (this.inputs.focusMode() === 'activedescendant') {
0 commit comments