The CommandPalette component (src/components/CommandPalette.tsx) provides quick actions for navigation, but does not expose a keyboard shortcut for resolving the current outage. Operators managing multiple outages must click the "Resolve Outage" button in the UI. Adding a command palette action would speed up the resolution workflow.
Proposal
- Add a new command entry "Resolve current outage" in the command palette
- The action is only enabled when viewing an outage detail page (
/outages/[id])
- The action opens the resolve modal (
setIsResolveModalOpen(true))
- Display the keyboard shortcut hint (e.g., "Ctrl+K → R")
Acceptance criteria
Getting started
Files: src/components/CommandPalette.tsx, src/app/outages/[id]/page.tsx
The
CommandPalettecomponent (src/components/CommandPalette.tsx) provides quick actions for navigation, but does not expose a keyboard shortcut for resolving the current outage. Operators managing multiple outages must click the "Resolve Outage" button in the UI. Adding a command palette action would speed up the resolution workflow.Proposal
/outages/[id])setIsResolveModalOpen(true))Acceptance criteria
Getting started
Files:
src/components/CommandPalette.tsx,src/app/outages/[id]/page.tsx