feat(desktop): working indicator on project sidebar (#26223)

This commit is contained in:
Erik Demaine
2026-05-07 23:42:39 -04:00
committed by GitHub
parent 114eeb21dc
commit 2ba9aa2196
3 changed files with 21 additions and 3 deletions

View File

@@ -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,