Skip to content

Commit f6a8f0c

Browse files
committed
ui: show 'docker not running' in status bar when container fails
1 parent 2a672dd commit f6a8f0c

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

cmd/chat_view.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -350,6 +350,9 @@ func (m chatModel) View() string {
350350
if m.containerEnabled && m.containerReady {
351351
leftBold = "Container"
352352
leftDim = " - no approval needed"
353+
} else if m.containerEnabled && m.containerErr != nil {
354+
leftBold = "Container"
355+
leftDim = " - docker not running"
353356
} else {
354357
leftBold = permissionModeLabel(m.session)
355358
leftDim = permissionModeHint(m.session)

0 commit comments

Comments
 (0)