Skip to content

Commit eaa3969

Browse files
authored
Show "Update plan" in TUI plan updates (#2192)
## Summary - Display "Update plan" instead of "Update to do" when the plan is updated in the TUI ## Testing - `just fmt` - `just fix` *(fails: E0658 `let` expressions in this position are unstable)* - `cargo test --all-features` *(fails: E0658 `let` expressions in this position are unstable)* ------ https://chatgpt.com/codex/tasks/task_i_6897f78fc5908322be488f02db42a5b9
1 parent 90d892f commit eaa3969

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

codex-rs/tui/src/history_cell.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -739,10 +739,10 @@ impl HistoryCell {
739739
let mut header: Vec<Span> = Vec::new();
740740
header.push(Span::raw("📋"));
741741
header.push(Span::styled(
742-
" Updated",
742+
" Update plan",
743743
Style::default().add_modifier(Modifier::BOLD).magenta(),
744744
));
745-
header.push(Span::raw(" to do list ["));
745+
header.push(Span::raw(" ["));
746746
if filled > 0 {
747747
header.push(Span::styled(
748748
"█".repeat(filled),

0 commit comments

Comments
 (0)