Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
ee536fd
feat: add dashboard infrastructure, feature flag, API slice, and mock…
kruulik Mar 16, 2026
b290afd
Merge branch 'main' into dashboard-infrastructure
kruulik Mar 16, 2026
4ea4a9f
refactor: extract dashboard types to types.ts and convert to enums
kruulik Mar 16, 2026
d1099f0
feat: add PostureCard and PriorityActionsCard to dashboard
kruulik Mar 16, 2026
58dcedd
refactor: apply code review fixes to PostureCard, PriorityActionsCard…
kruulik Mar 16, 2026
7706540
some cleanup
kruulik Mar 16, 2026
b67ef5c
Move drawer interaction out of PostureCard into command-bar PR
kruulik Mar 16, 2026
3a23600
Remove useDashboardDrawer from this branch
kruulik Mar 16, 2026
07b015e
feat: add CommandBar and DashboardDrawer to dashboard
kruulik Mar 16, 2026
226d709
Add changelog entry for dashboard command bar PR
kruulik Mar 16, 2026
7ab892f
refactor: update CommandBar to use dashboard enums and constants path
kruulik Mar 16, 2026
fbae434
Add PostureBreakdownContent and restore drawer interaction in Posture…
kruulik Mar 16, 2026
69deb9c
Add useDashboardDrawer to command-bar PR
kruulik Mar 16, 2026
660664c
deslop: remove AI-generated comments and style inconsistencies
kruulik Mar 16, 2026
228c403
deslop: remove AI-generated comments and style inconsistencies
kruulik Mar 16, 2026
8893d34
Merge branch 'dashboard-posture-actions' into dashboard-command-bar-pr
kruulik Mar 16, 2026
4d0b5d0
adjust for data
kruulik Mar 16, 2026
ee87b9c
cleanup
kruulik Mar 16, 2026
dc5dfca
Merge branch 'dashboard-infrastructure' into dashboard-posture-actions
kruulik Mar 16, 2026
d0732ef
reapply change
kruulik Mar 16, 2026
0e3fc43
Address PR review feedback: add route fallbacks, remove dead code
kruulik Mar 16, 2026
8e7ec29
Merge branch 'dashboard-posture-actions' into dashboard-command-bar-pr
kruulik Mar 16, 2026
3b6c76f
Fix prettier formatting in dashboard mock handlers
kruulik Mar 16, 2026
0a492e5
Merge branch 'main' into dashboard-infrastructure
kruulik Mar 16, 2026
2d9047e
Merge branch 'dashboard-infrastructure' into dashboard-posture-actions
kruulik Mar 16, 2026
a4f2a7b
comments
kruulik Mar 16, 2026
33f6d04
Merge branch 'main' into dashboard-infrastructure
kruulik Mar 16, 2026
f96f213
remove headerlayout
kruulik Mar 16, 2026
b90d2d3
Merge branch 'dashboard-posture-actions' into dashboard-command-bar-pr
kruulik Mar 16, 2026
71f5e5b
Merge branch 'dashboard-infrastructure' into dashboard-posture-actions
kruulik Mar 16, 2026
43a2c48
Merge branch 'dashboard-posture-actions' into dashboard-command-bar-pr
kruulik Mar 16, 2026
2ce9a1a
Address PR review feedback
kruulik Mar 17, 2026
7b6449b
resolve comments
kruulik Mar 17, 2026
263a40b
Replace layout comp
kruulik Mar 17, 2026
3892b43
Merge branch 'main' into dashboard-command-bar-pr
kruulik Mar 17, 2026
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
Prev Previous commit
Next Next commit
Fix prettier formatting in dashboard mock handlers
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
  • Loading branch information
kruulik and claude committed Mar 16, 2026
commit 3b6c76fed7e7e1685aaec2b3ab9576e7173b2fce
6 changes: 2 additions & 4 deletions clients/admin-ui/src/mocks/dashboard/handlers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,8 @@ export const dashboardHandlers = () => {
);
}),

rest.get(
`${apiBase}/plus/dashboard/system-coverage`,
(_req, res, ctx) =>
res(ctx.status(200), ctx.json(mockSystemCoverage)),
rest.get(`${apiBase}/plus/dashboard/system-coverage`, (_req, res, ctx) =>
res(ctx.status(200), ctx.json(mockSystemCoverage)),
),

rest.patch(
Expand Down
Loading