feat(ui): show pending/queued status in toast and background_output

This commit is contained in:
justsisyphus
2026-01-19 10:22:34 +09:00
parent 9710e10aca
commit 92942a562f
3 changed files with 31 additions and 11 deletions
+2 -1
View File
@@ -137,7 +137,8 @@ export class TaskToastManager {
for (const task of queued) {
const bgIcon = task.isBackground ? "⏳" : "⏸️"
const skillsInfo = task.skills?.length ? ` [${task.skills.join(", ")}]` : ""
lines.push(`${bgIcon} ${task.description} (${task.agent})${skillsInfo}`)
const isNew = task.id === newTask.id ? " ← NEW" : ""
lines.push(`${bgIcon} ${task.description} (${task.agent})${skillsInfo} - Queued${isNew}`)
}
}