feat: queued mutations while reloading or offline

This commit is contained in:
2026-08-03 12:14:31 +02:00
parent 63b6a645e0
commit 312b25fd39
11 changed files with 1247 additions and 28 deletions

View File

@@ -658,6 +658,9 @@ func renderAIProgressBar(width int, progress AIRunProgress, spinner int) string
}
func localAICommentBadge(comment ReviewComment) string {
if comment.Pending {
return " " + warnStyle.Render("[PENDING]")
}
switch comment.Origin {
case reviewOriginLocalAI:
return " " + warnStyle.Render("[LOCAL AI · LOCAL ONLY]")