Preserve git action progress until HTTP completion#1388
Merged
juliusmarminge merged 1 commit intomainfrom Mar 24, 2026
Merged
Conversation
- Keep progress timestamps intact on `action_finished` and `action_failed` - Let the HTTP response path clear the active toast so the running description does not flash away
|
Important Review skippedAuto reviews are disabled on this repository. Please check the settings in the CodeRabbit UI or the ⚙️ Run configurationConfiguration used: Repository UI Review profile: CHILL Plan: Pro Run ID: You can disable this status message by setting the Use the checkbox below for a quick retry:
✨ Finishing Touches🧪 Generate unit tests (beta)
Comment |
waaeel
added a commit
to dinweldik/fatma
that referenced
this pull request
Mar 25, 2026
Merged upstream improvements while preserving fork identity: - Claude Code adapter support (pingdotgg#179) - Context window usage meter (pingdotgg#1351) - Sidebar project/thread sorting by recency (pingdotgg#1372) - Git action progress streaming (pingdotgg#1214, pingdotgg#1388) - Terminal history ANSI preservation (pingdotgg#1367) - Word wrapping setting (pingdotgg#1326) - Resizable chat sidebar (pingdotgg#1347) - Configurable timestamp format (pingdotgg#855) - Selective file staging in commit dialog (pingdotgg#872) - Fuzzy workspace search (pingdotgg#256) - Scroll-to-bottom pill (pingdotgg#619) - Numerous bug fixes and improvements Preserved fork customizations: - Fatma branding (all @t3tools -> @fatma) - Mobile UI (swipe gestures, bottom nav, mobile shells) - VSCode-like source control (staged/unstaged, file diffs) - PWA support - Custom CI/CD workflows Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
emrezeytin
pushed a commit
to emrezeytin/t3code
that referenced
this pull request
Mar 25, 2026
apexsloth
pushed a commit
to apexslothforks/t3code
that referenced
this pull request
Mar 26, 2026
Chrono-byte
pushed a commit
to Chrono-byte/t3code
that referenced
this pull request
Mar 31, 2026
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.
Summary
action_finishedandaction_failedWebSocket events.Testing
apps/web/src/components/GitActionsControl.tsxand only adjusts toast state timing.Note
Low Risk
Low risk UI-only change that adjusts when toast progress timestamps are cleared; potential impact is limited to git action progress toast rendering timing.
Overview
Prevents the git action progress toast from losing its elapsed-time description between
action_finished/action_failedWebSocket events and the final HTTP success/error response.This changes the progress event handler in
GitActionsControl.tsxto not clear progress timestamps on WS completion events, deferring final toast state management to the HTTP handlers to avoid a brief “bare title” toast flash.Written by Cursor Bugbot for commit 650c9c7. This will update automatically on new commits. Configure here.
Note
Preserve git action progress display until HTTP response completes
Previously,
action_finishedandaction_failedWebSocket events in GitActionsControl.tsx immediately cleared timing fields and updated the loading toast, causing the running duration to disappear before the HTTP response arrived. Now both events return early without modifying state, leaving the HTTP response handler to finalize the toast and clearactiveGitActionProgressRef.Macroscope summarized 650c9c7.