-
Notifications
You must be signed in to change notification settings - Fork 117
feat: add runner status indicator #3015
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: add runner status indicator #3015
Conversation
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Claude encountered an error —— View job I'll analyze this and get back to you. |
commit: |
Graphite Automations"Test" took an action on this PR • (09/29/25)1 assignee was added to this PR based on Kacper Wojciechowski's automation. |
<WithTooltip | ||
content="Stopped" | ||
trigger={ | ||
<span className={"size-2 rounded-full, bg-foreground/10"} /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There's a syntax error in the className
prop for the stopped runner indicator. The comma between CSS classes is invalid and should be removed:
// Current (incorrect):
className={"size-2 rounded-full, bg-foreground/10"}
// Should be:
className={"size-2 rounded-full bg-foreground/10"}
This will ensure the CSS classes are properly applied to the element.
<span className={"size-2 rounded-full, bg-foreground/10"} /> | |
<span className={"size-2 rounded-full bg-foreground/10"} /> |
Spotted by Diamond
Is this helpful? React 👍 or 👎 to let us know.
Merge activity
|
Closes FRONT-813 ### TL;DR Added visual status indicators for runners in the runners table. ### What changed? - Added a new status column to the runners table with visual indicators - Implemented a `RunnerStatusBadge` component that displays: - A green ping for active runners - A warning hourglass icon for draining runners - A gray dot for stopped runners - Updated table column spans to accommodate the new status column - Added imports for the necessary components (`Icon`, `Ping`, etc.) ### How to test? 1. Navigate to the runners table 2. Verify that each runner displays the appropriate status indicator: - Active runners show a green ping - Draining runners show a yellow hourglass icon with "Draining" tooltip - Stopped runners show a gray dot with "Stopped" tooltip ### Why make this change? This change improves the user experience by providing immediate visual feedback about runner status without requiring users to scan through textual information. The status indicators make it easier to quickly assess the state of all runners at a glance.
Closes FRONT-813
TL;DR
Added visual status indicators for runners in the runners table.
What changed?
RunnerStatusBadge
component that displays:Icon
,Ping
, etc.)How to test?
Why make this change?
This change improves the user experience by providing immediate visual feedback about runner status without requiring users to scan through textual information. The status indicators make it easier to quickly assess the state of all runners at a glance.