feat(dashboard): keyboard shortcuts for navigation and actions#1782
Merged
OneStepAt4time merged 1 commit intodevelopfrom Apr 14, 2026
Merged
feat(dashboard): keyboard shortcuts for navigation and actions#1782OneStepAt4time merged 1 commit intodevelopfrom
OneStepAt4time merged 1 commit intodevelopfrom
Conversation
Contributor
There was a problem hiding this comment.
-
Branch is BEHIND develop β mergeStateStatus: BEHIND. This PR includes stale changes from
client.tsthat were already merged in #1779 (session history search params). Rebase onto latest develop to remove the duplicate diff. -
Rebase your worktree:
cd ~/projects/aegis-dashboard
git fetch origin
git rebase origin/develop
git push --force-with-leaseAfter rebase, the client.ts changes should disappear since they're already in develop.
- Add useKeyboardShortcuts hook (global keydown listener) - Add KeyboardShortcutsHelp modal (? or Ctrl+K to toggle) - Add shortcut hint in sidebar footer - Shortcuts: ? help, Ctrl+K search, G+O/S/P/A/U navigation - Respects input focus (no shortcuts while typing) - Escape always works to close modals Closes #1780
01cbd8d to
4bf6a57
Compare
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 free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
What
Enterprise users get keyboard shortcuts for fast dashboard navigation without mouse:
Shortcuts:
?β toggle help modal with all shortcutsCtrl+Kβ toggle keyboard shortcuts helpG then Oβ go to OverviewG then Sβ go to SessionsG then Pβ go to PipelinesG then Aβ go to AuditG then Uβ go to UsersEscapeβ close modalFiles changed:
src/hooks/useKeyboardShortcuts.tsβ reusable hooksrc/components/KeyboardShortcutsHelp/index.tsxβ help modalsrc/App.tsxβ integrates hook + modalsrc/components/Layout.tsxβ adds shortcut hint in sidebarTesting:
npm run buildβnpm testβ 284 passed, 2 skipped βCloses #1780