Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
3 changes: 3 additions & 0 deletions .console/log.md
Original file line number Diff line number Diff line change
Expand Up @@ -176,3 +176,6 @@ anchored. Default-open: System Resources only; Gate + Rate collapsed.
- '1m / 5m / 15m' → '1 Min / 5 Min / 15 Min' (clearer time windows).
- '(N cores)' → '(N Cores)' (title-case suffix).


## 2026-05-08 — Reorder bottom sections: Rate → Gate → Resources

7 changes: 6 additions & 1 deletion src/operator_console/watcher_status_pane.py
Original file line number Diff line number Diff line change
Expand Up @@ -1130,7 +1130,12 @@ def _bottom_sections(data: dict, C: dict) -> list[dict]:
]
sections.append({"id": "global_rate", "lines": gr_lines, "sel_local": -1})

return sections
# Reorder: Rate → Gate → Resources (top-down). Resources is the
# always-open block and reads nicely as the final, full-detail anchor
# of the pane; Rate + Gate sit above as compact gate-state lines.
by_id = {s["id"]: s for s in sections}
return [by_id[k] for k in ("global_rate", "global_gate", "system_resources")
if k in by_id]


_SIZE_MULT_MIN = 0.3
Expand Down
Loading