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 bacca54 commit 079e7feCopy full SHA for 079e7fe
packages/ui/src/lib/focus/focusManager.ts
@@ -768,6 +768,7 @@ export class FocusManager {
768
if (!metadata) return;
769
770
const navigationContext = this.buildNavigationContext(event, metadata);
771
+
772
if (this.shouldShowOutlineOnly(navigationContext)) {
773
this.outline.set(true);
774
event.stopPropagation();
@@ -901,7 +902,7 @@ export class FocusManager {
901
902
action: NavigationAction | null;
903
hasOutline?: boolean;
904
}): boolean {
- return (!context.hasOutline && context.action !== 'tab') || false;
905
+ return (!context.hasOutline && context.action !== null) || false;
906
}
907
908
/**
0 commit comments