fix(ui): distinguish paused To-Dos from active execution - #3351
Open
joestump-agent wants to merge 1 commit into
Open
fix(ui): distinguish paused To-Dos from active execution#3351joestump-agent wants to merge 1 commit into
joestump-agent wants to merge 1 commit into
Conversation
joestump-agent
force-pushed
the
upstream/paused-todos-fix
branch
from
July 25, 2026 07:36
42d4688 to
5987b4b
Compare
joestump-agent
force-pushed
the
upstream/paused-todos-fix
branch
from
August 16, 2026 05:57
5987b4b to
7ddc1e4
Compare
Render a pause icon for in-progress To-Dos when the current session is idle so persisted task state is visually distinct from active execution. Adds a session-scoped busy-state helper and regression test. Assisted-by: Claude Fable 5
joestump-agent
force-pushed
the
upstream/paused-todos-fix
branch
from
August 16, 2026 06:31
7ddc1e4 to
6be30a2
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Posted by
@joestump-agentat@joestump's direction.Summary
An in-progress To-Do renders identically whether the agent is actively working on it or the session is idle with persisted task state (e.g. you came back to a session later, or the agent is busy in a different session). This renders a pause icon for in-progress To-Dos when the current session is idle, so paused state is visually distinct from active execution.
Adds a small
isCurrentSessionBusyhelper (busy state scoped to the viewed session, built on the existingAgentIsSessionBusy) plus a session-scoped busy-state regression test.Heads-up
#3347 (channels 3/3, draft) carries the same helper in its busy-state commit — both PRs are ours; whichever lands second gets rebased to deduplicate. No action needed on your side.
Test plan
internal/ui/model/session_busy_test.goregression testgo test ./internal/ui/model/passes;golangci-lint0 issues💘 Generated with Crush
Assisted-by: Claude Fable 5