Skip to content

Commit 73b5f6d

Browse files
committed
fix: revert footer to show 'container: <status>' as before
1 parent f4cc23d commit 73b5f6d

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

cmd/chat_view.go

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -431,12 +431,10 @@ func (m chatModel) View() string {
431431
}
432432
if m.containerEnabled && m.containerStatus != "" {
433433
style := dimStyle
434-
text := "container: " + m.containerStatus
435434
if m.containerErr != nil {
436435
style = lipgloss.NewStyle().Foreground(lipgloss.Color("#ff5555"))
437-
text = "Docker is not running. Start Docker and try again."
438436
}
439-
bottomBar.WriteString(style.Render(text) + "\n")
437+
bottomBar.WriteString(style.Render("container: "+m.containerStatus) + "\n")
440438
}
441439
_ = bottomBarLines
442440
}

0 commit comments

Comments
 (0)