mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-09-06 08:18:58 +00:00
Keep duration on far right in stage completion lines
Swap cost and duration order so cost appears first and duration stays consistently on the far right edge. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
aa158ef6a5
commit
a71b9d0561
1 changed files with 2 additions and 2 deletions
|
|
@ -218,9 +218,9 @@ impl ProgressUI {
|
|||
let cost_str = usage
|
||||
.as_ref()
|
||||
.and_then(compute_stage_cost)
|
||||
.map(|c| format!(" {}", format_cost(c)))
|
||||
.map(|c| format!("{} ", format_cost(c)))
|
||||
.unwrap_or_default();
|
||||
let prefix = format!("{dur}{cost_str}");
|
||||
let prefix = format!("{cost_str}{dur}");
|
||||
let glyph = if succeeded {
|
||||
green_check()
|
||||
} else {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue