feat(desktop): working indicator on project sidebar (#26223)
This commit is contained in:
parent
114eeb21dc
commit
2ba9aa2196
3 changed files with 21 additions and 3 deletions
|
|
@ -154,7 +154,7 @@ export function DialogSessionList() {
|
|||
}
|
||||
const isDeleting = toDelete() === x.id
|
||||
const status = sync.data.session_status?.[x.id]
|
||||
const isWorking = status?.type === "busy"
|
||||
const isWorking = status?.type === "busy" || status?.type === "retry"
|
||||
return {
|
||||
title: isDeleting ? `Press ${deleteHint()} again to confirm` : x.title,
|
||||
bg: isDeleting ? theme.error : undefined,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue