Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion web/app/components/KeyboardShortcutsModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ export function KeyboardShortcutsModal({ onClose }: KeyboardShortcutsModalProps)
role="dialog"
aria-modal="true"
aria-labelledby="shortcuts-modal-title"
aria-describedby="shortcuts-modal-description"
>
<div className="flex justify-between mb-4">
<h2 id="shortcuts-modal-title" className="text-[13px] font-bold text-foreground">
Expand All @@ -112,7 +113,7 @@ export function KeyboardShortcutsModal({ onClose }: KeyboardShortcutsModalProps)
×
</button>
</div>
<div className="space-y-2">
<div id="shortcuts-modal-description" className="space-y-2">
{SHORTCUTS.map(({ key, action }) => (
<div key={key} className="flex justify-between text-[11px]">
<span className="text-text-muted">{action}</span>
Expand Down
Loading