We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f4cc23d commit 73b5f6dCopy full SHA for 73b5f6d
1 file changed
cmd/chat_view.go
@@ -431,12 +431,10 @@ func (m chatModel) View() string {
431
}
432
if m.containerEnabled && m.containerStatus != "" {
433
style := dimStyle
434
- text := "container: " + m.containerStatus
435
if m.containerErr != nil {
436
style = lipgloss.NewStyle().Foreground(lipgloss.Color("#ff5555"))
437
- text = "Docker is not running. Start Docker and try again."
438
439
- bottomBar.WriteString(style.Render(text) + "\n")
+ bottomBar.WriteString(style.Render("container: "+m.containerStatus) + "\n")
440
441
_ = bottomBarLines
442
0 commit comments