You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fixes keyboard navigation in HelpTooltip components by replacing the underlying Tooltip primitive with Popover. Links inside help tooltips are now accessible via keyboard navigation.
Problem
When tabbing through the UI, users could focus on the help icon button and open the tooltip, but the links inside were not in the tab order. This made the links inaccessible to keyboard-only users, violating accessibility standards.
Solution
Replaced Radix UI's Tooltip primitive with Popover primitive in the HelpTooltip component. Popovers properly manage focus and keyboard navigation for interactive content, while Tooltips are designed only for non-interactive content.
Changes
Swapped Tooltip imports to Popover in HelpTooltip.tsxHelpPopover.tsx
Added type="button" to trigger button for proper semantics
Added disablePortal prop support for backward compatibility
Maintained the same API so all existing usages remain compatible
Behavior Changes
Before: Hover to open, links not keyboard-accessible
After: Click to open (or Enter/Space when focused), links fully keyboard-accessible via Tab
Heads up: this PR uses baseUrl-style imports (e.g. import { ... } from "components/Popover/Popover", import { cn } from "utils/cn" in HelpTooltip.tsx). The baseUrl resolution in tsconfig.json is deprecated and will be removed soon — these imports will stop working.
Please pull a recent version of main into your branch and make sure all new TypeScript imports use the new #/ import style (e.g. import { ... } from "#/components/Popover/Popover").
code-qtzl
changed the title
fix(site/src/components): make links keyboard-accessible and remove u…
fix(site/src/components, site/src/modules/dashboard): make links keyboard-accessible and remove u…
Mar 30, 2026
code-qtzl
changed the title
fix(site/src/components, site/src/modules/dashboard): make links keyboard-accessible and remove u…
fix(site/src/components): improve keyboard navigation in help tooltips
Mar 30, 2026
code-qtzl
changed the title
fix(site/src/components): improve keyboard navigation in help tooltips
fix(site/src/components): improve keyboard navigation in help popovers
Mar 30, 2026
code-qtzl
changed the title
fix(site/src/components): improve keyboard navigation in help popovers
fix(site/src/components, site/src/modules/dashboard): improve keyboard navigation in help popovers
Mar 30, 2026
code-qtzl
changed the title
fix(site/src/components, site/src/modules/dashboard): improve keyboard navigation in help popovers
fix(site/src/components, site/src/modules/dashboard, site/src/pages, site/src/utils): improve keyboard navigation in help popovers
Mar 30, 2026
code-qtzl
changed the title
fix(site/src/components, site/src/modules/dashboard, site/src/pages, site/src/utils): improve keyboard navigation in help popovers
fix(site): improve keyboard navigation in help popovers
Mar 30, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Labels
communityPull Requests and issues created by the community.
3 participants
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Fixes keyboard navigation in HelpTooltip components by replacing the underlying Tooltip primitive with Popover. Links inside help tooltips are now accessible via keyboard navigation.
Problem
When tabbing through the UI, users could focus on the help icon button and open the tooltip, but the links inside were not in the tab order. This made the links inaccessible to keyboard-only users, violating accessibility standards.
Solution
Replaced Radix UI's Tooltip primitive with Popover primitive in the HelpTooltip component. Popovers properly manage focus and keyboard navigation for interactive content, while Tooltips are designed only for non-interactive content.
Changes
Tooltipimports toPopoverinHelpTooltip.tsxHelpPopover.tsxtype="button"to trigger button for proper semanticsdisablePortalprop support for backward compatibilityBehavior Changes
Testing
Screenshot (gif)
Before
After