Skip to content

Commit fb087af

Browse files
authored
Improve TUI label for improving step (#667)
Before this would print "Preparing 1", now it prints "Preparing step 1"
1 parent eea180c commit fb087af

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

internal/batches/ui/task_exec_tui.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -455,7 +455,7 @@ func (ui stepsExecTUI) StepSkipped(step int) {
455455
ui.updateStatusBar(fmt.Sprintf("Skipping step %d", step))
456456
}
457457
func (ui stepsExecTUI) StepPreparingStart(step int) {
458-
ui.updateStatusBar(fmt.Sprintf("Preparing %d", step))
458+
ui.updateStatusBar(fmt.Sprintf("Preparing step %d", step))
459459
}
460460
func (ui stepsExecTUI) StepPreparingSuccess(step int) {
461461
// noop right now

0 commit comments

Comments
 (0)