fix(ui): restore chat-new-messages class on scroll pill button#44856
Merged
altaywtf merged 3 commits intoopenclaw:mainfrom Mar 13, 2026
Merged
fix(ui): restore chat-new-messages class on scroll pill button#44856altaywtf merged 3 commits intoopenclaw:mainfrom
altaywtf merged 3 commits intoopenclaw:mainfrom
Conversation
Contributor
Greptile SummaryThis PR restores the correct CSS class (
Confidence Score: 5/5
Last reviewed commit: 121ecfe |
4aff2e7 to
691632b
Compare
691632b to
621ef63
Compare
Member
|
Merged via squash.
Thanks @Astro-Han! |
z-hao-wang
pushed a commit
to z-hao-wang/openclaw
that referenced
this pull request
Mar 13, 2026
…law#44856) Merged via squash. Prepared head SHA: 621ef63 Co-authored-by: Astro-Han <[email protected]> Co-authored-by: altaywtf <[email protected]> Reviewed-by: @altaywtf
frankekn
pushed a commit
to xinhuagu/openclaw
that referenced
this pull request
Mar 14, 2026
…law#44856) Merged via squash. Prepared head SHA: 621ef63 Co-authored-by: Astro-Han <[email protected]> Co-authored-by: altaywtf <[email protected]> Reviewed-by: @altaywtf
18 tasks
ecochran76
pushed a commit
to ecochran76/openclaw
that referenced
this pull request
Mar 14, 2026
…law#44856) Merged via squash. Prepared head SHA: 621ef63 Co-authored-by: Astro-Han <[email protected]> Co-authored-by: altaywtf <[email protected]> Reviewed-by: @altaywtf
5 tasks
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.
Note
AI-assisted (Claude Code). Testing level: fully tested —
pnpm build,pnpm check,pnpm testall pass locally (913/913 test files passed; 2 unrelated jsdom env errors inapp-chat.test.ts).codex review --base origin/mainpassed with no blocking issues. Author understands the change.Summary
agent-chat__scroll-pill(introduced in feat(ui): dashboard-v2 views refactor (slice 3/3 of dashboard-v2) #41503) back tochat-new-messages, which matches the existing styles inui/src/styles/chat/layout.css:104-139.Change Type (select all)
Scope (select all touched areas)
Linked Issue/PR
New messagespill can render as huge malformed overlay #44844User-visible / Behavior Changes
The "New messages" scroll pill renders as a compact floating pill button instead of a full-screen SVG overlay.
Security Impact (required)
Repro + Verification
Environment
Steps
Expected
Actual (before fix)
Evidence
Root cause: PR #41503 (
f76a3c5225) changedclass="btn chat-new-messages"toclass="agent-chat__scroll-pill", but no CSS rule exists for.agent-chat__scroll-pill. The existing.chat-new-messagesstyles (includingsvg { width: 16px; height: 16px }) never applied, leaving the SVG unconstrained.Human Verification (required)
pnpm build+pnpm check+pnpm test(913/913 passed).codex review --base origin/mainpassed (no blocking issues). Confirmedagent-chat__scroll-pillhas zero CSS matches;chat-new-messageshas full styling atlayout.css:104-139.agent-chat__scroll-pillin styles or JS.Review Conversations
Compatibility / Migration
Failure Recovery (if this breaks)
ui/src/ui/views/chat.tsui/src/ui/views/chat.tsRisks and Mitigations
None.