diff --git a/internal/ui/detail.go b/internal/ui/detail.go index d5258b9a..8c0265df 100644 --- a/internal/ui/detail.go +++ b/internal/ui/detail.go @@ -975,6 +975,14 @@ func (m *DetailModel) renderHelp() string { }{"r", "retry"}) } + // Only show status change when task is not currently processing + if !isProcessing { + keys = append(keys, struct { + key string + desc string + }{"S", "status"}) + } + // Show Tab shortcut when panes are visible if hasPanes && os.Getenv("TMUX") != "" { keys = append(keys, struct {