fix(web): style sidebar action tooltips - #6371
Merged
Merged
Conversation
Co-authored-by: Utkarsh Patil <73941998+UtkarshUsername@users.noreply.github.com>
Contributor
Thread transfer impact✅ Thread transfer remains within every enforced ceiling.
Baseline: Scenario and decoded snapshot size10 historical turns, 5 command tools per turn, 878.9 KiB retained MCP result per historical turn, and a 1.05 MiB retained result in the measured turn.
Updated in place by a trusted workflow. PR artifacts are strictly validated and never executed. |
Co-authored-by: Utkarsh Patil <73941998+UtkarshUsername@users.noreply.github.com>
UtkarshUsername
approved these changes
Aug 12, 2026
maria-rcks
enabled auto-merge (squash)
August 14, 2026 19:39
github-actions Bot
added a commit
to omarcresp/t3code-flake
that referenced
this pull request
Aug 14, 2026
## What's Changed * perf(desktop): speed up Windows update installation by @StiensWout in pingdotgg/t3code#6169 * fix(web): style sidebar action tooltips by @t3-code[bot] in pingdotgg/t3code#6371 **Full Changelog**: pingdotgg/t3code@v0.0.34-nightly.20260814.1095...v0.0.34-nightly.20260814.1096 Upstream release: https://github.com/pingdotgg/t3code/releases/tag/v0.0.34-nightly.20260814.1096
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.
What Changed
titletooltipWhy
The three adjacent quick actions used inconsistent tooltip behavior: pin showed a browser-native tooltip, while snooze and settle showed none. They now share the same styled tooltip treatment.
UI Changes
before
after, light mode
unpin
snooze
settle
after, dark mode
unpin
snooze
settle
Validation
vp run --filter @t3tools/web typecheckvp lint apps/web/src/components/Sidebar.tsx --report-unused-disable-directivesvp fmt --check apps/web/src/components/Sidebar.tsxtitleChecklist
model: gpt-5.6-sol · harness: hermes agent
request provenance
Note
Low Risk
Presentation-only change in Sidebar quick-action buttons; no logic, API, or data handling changes.
Overview
Standardizes hover help on the sidebar’s snooze, unpin, and settle quick actions by wrapping each trigger in the shared
Tooltip/TooltipPopuppattern already used elsewhere inSidebar.tsx.Snooze nests the tooltip around the popover trigger (clock icon) and adds a “Snooze thread” label. Unpin drops the native
titleattribute in favor of an “Unpin thread” styled tooltip while keepingaria-label. Settle gains a matching “Settle thread” tooltip on the card-row hover action. Click handlers, keyboard focus, andaria-labelvalues are unchanged.Reviewed by Cursor Bugbot for commit b67d8ad. Bugbot is set up for automated code reviews on this repo. Configure here.
Note
Add tooltips to snooze, unpin, and settle action buttons in the sidebar
Wraps the snooze, unpin, and settle buttons in Sidebar.tsx with
Tooltipcomponents, replacing the previoustitleattribute approach. Hovering or focusing each button now shows a labeled tooltip popup ('Snooze thread', 'Unpin thread', 'Settle thread').Macroscope summarized b67d8ad.