feat(client): UI polish batch 2 — shared components, breadcrumbs, sorting, trends - #217
Merged
Merged
Conversation
…ting, trends - Extract shared PaginationFooter and PageSizeSelector components (#194) - Unify status display into shared StatusDot and RunStatusIndicator (#195) - Add breadcrumb navigation to the header, replacing static 'Outpost' text (#196) - Standardize page-level spacing to space-y-6 across all pages (#201) - Add trend indicator (previous 24h comparison) to dashboard stats (#202) - Add sortable table headers to events (server-side) and sessions (client-side) (#203) Fixes #194, fixes #195, fixes #196, fixes #201, fixes #202, fixes #203
Deploying with
|
| Status | Name | Latest Commit | Updated (UTC) |
|---|---|---|---|
| ❌ Deployment failed View logs |
jared | 2de19e2 | Sep 20 2026, 04:40 AM |
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.
Summary
Implements the remaining 6 UI polish issues in a single batch:
#194 — Extract shared Pagination and PageSizeSelector components
components/pagination.tsxwithPaginationFooterandPageSizeSelector#195 — Unify status display components into a shared component family
components/run-status.tsxwith sharedRUN_STATUS_COLORSmap,StatusDot, andRunStatusIndicatorStatusIndicatorfrom sessions.tsx → sharedRunStatusIndicatorStatusDotfrom container-detail.tsx → sharedStatusDot#196 — Add breadcrumb navigation to the header
#201 — Standardize page-level spacing across all pages
space-y-4tospace-y-6#202 — Add trend indicators to dashboard stat cards
previous24hquery to the stats API endpoint (events from 24-48h ago)TrendBadgecomponent showing percentage change with up/down arrow#203 — Add sortable table headers to events and sessions tables
components/sortable-table-head.tsxwithSortableTableHeadandtoggleSorthelpersortBy/sortDirquery params (status, repo, sender, event, time)Files changed
components/pagination.tsx,components/run-status.tsx,components/sortable-table-head.tsxevents.tsx,sessions.tsx,container-detail.tsx,dashboard.tsx,layout.tsx,api.ts,routes/events/index.tsVerification
tsc --noEmitcleanbiome checkcleanFixes #194, fixes #195, fixes #196, fixes #201, fixes #202, fixes #203