fix(app): show session busy even for active session

pull/8724/head
Adam 2026-01-15 12:55:35 -06:00
parent b0345284f9
commit beb97d21ff
No known key found for this signature in database
GPG Key ID: 9CB48779AF150E75
1 changed files with 0 additions and 1 deletions

View File

@ -859,7 +859,6 @@ export default function Layout(props: ParentProps) {
return false
})
const isWorking = createMemo(() => {
if (props.session.id === params.id) return false
if (hasPermissions()) return false
const status = sessionStore.session_status[props.session.id]
return status?.type === "busy" || status?.type === "retry"