feat(kiloclaw): controller, device pairing, and dashboard redesign - #480
Merged
Conversation
…rmation dialogs - Add gateway process status polling (30s) with state, uptime, restarts, last exit, provisioned - Add tRPC gatewayStatus query and useKiloClawGatewayStatus hook - Add confirmation dialogs for Restart OpenClaw and Redeploy actions - Combine instance type + memory into single badge, move env/secrets/channels to Settings tab - Rename Instance tab to Gateway Process, differentiate machine vs gateway labels - Invalidate gateway status on restart/redeploy success for immediate UI refresh - Block dialog dismiss while mutation is pending to prevent stale analytics events
pandemicsyn
marked this pull request as ready for review
February 23, 2026 22:15
| const mins = Math.floor((seconds % 3600) / 60); | ||
| if (days > 0) return `${days}d ${hours}h ${mins}m`; | ||
| if (hours > 0) return `${hours}h ${mins}m`; | ||
| return `${mins}m`; |
Contributor
There was a problem hiding this comment.
SUGGESTION: formatUptime shows "0m" for uptimes under 60 seconds (e.g. right after a restart). Consider adding a seconds branch so users see "30s" instead of "0m" during the first minute.
Suggested change
| return `${mins}m`; | |
| return mins > 0 ? `${mins}m` : `${seconds}s`; |
Contributor
Code Review SummaryStatus: 1 Issue Found | Recommendation: Merge (minor suggestion only) Overview
Issue Details (click to expand)SUGGESTION
Files Reviewed (9 files)
|
St0rmz1
approved these changes
Feb 23, 2026
3 tasks
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