mirror of
https://github.com/anomalyco/opencode.git
synced 2026-08-11 01:56:05 +00:00
fix(app): show retry sessions as working
This commit is contained in:
parent
ad318bce65
commit
9ad4403df7
1 changed files with 1 additions and 1 deletions
|
|
@ -168,7 +168,7 @@ export const SessionItem = (props: SessionItemProps): JSX.Element => {
|
|||
if (hasPermissions()) return false
|
||||
// This matches how the TUI does it
|
||||
const status = sessionStore.session_status[props.session.id]
|
||||
return status?.type === "busy"
|
||||
return status?.type === "busy" || status?.type === "retry"
|
||||
})
|
||||
|
||||
const tint = createMemo(() => messageAgentColor(sessionStore.message[props.session.id], sessionStore.agent))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue