fix(devops-copilot): stop loading indicator overlapping thread messages - #2996
Merged
Merged
Conversation
|
View your CI Pipeline Execution ↗ for commit bcb5563
💡 Verify your cache is correct by running tasks in a sandbox. Read docs ↗ ☁️ Nx Cloud last updated this comment at |
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## staging #2996 +/- ##
===========================================
+ Coverage 51.87% 52.73% +0.86%
===========================================
Files 896 910 +14
Lines 22406 22707 +301
Branches 6901 6944 +43
===========================================
+ Hits 11622 11974 +352
+ Misses 8834 8774 -60
- Partials 1950 1959 +9
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Harness. 🚀 New features to boost your workflow:
|
RemiBonnet
enabled auto-merge (squash)
September 22, 2026 09:49
TheoGrandin74
approved these changes
Sep 22, 2026
rmnbrd
approved these changes
Sep 22, 2026
The loading indicator (which renders the "Plan steps" row) used `mt-auto` inside the fixed-height, scrollable message list. That pinned it to the bottom of the viewport so it floated over the previous chat bubble instead of flowing under it and scrolling with the thread. Let it flow naturally like the streaming/assistant messages, relying on the list's `gap-4` spacing. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
RemiBonnet
force-pushed
the
fix/copilot-loading-indicator-overlap
branch
from
September 22, 2026 11:45
bcb5563 to
464b216
Compare
Member
Author
|
🎉 This PR is included in version 1.360.0 🎉 The release is available on GitHub release Your semantic-release bot 📦🚀 |
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
Fixes a UI defect in the DevOps Copilot panel where a chat bubble overlapped the "Suggested Next Steps" content and floated above the Plan steps row instead of scrolling with the thread.
Root cause
LoadingIndicator(which renders the streaming response's Plan steps toggle) wrapped its content in<div className="relative top-2 mt-auto">. Inside the fixed-height (h-[220px]/ expanded) scrollable message list,mt-autopins the element to the bottom of the viewport rather than letting it flow directly under the last message. Since the user message is added to the thread immediately on send, the loading indicator was pushed below/over the preceding bubble, producing the overlap.StreamingMessageandAssistantMessagealready flow naturally withoutmt-auto.Change
top-2 mt-autofrom the loading indicator wrapper so it flows in normal order and inherits the list'sgap-4spacing, scrolling with the thread.Scope
One-line Tailwind class change, no logic/TS changes. Existing unit tests don't assert on this wrapper class.
Checks
Testing
Open the Copilot panel, start a conversation and trigger a loading/streaming response with plan steps: the "Plan steps" row now appears in-flow under the latest message and scrolls with the thread instead of overlapping it.
Summary by cubic
Fixes the DevOps Copilot loading indicator overlapping prior thread messages in the chat panel.
The "Plan steps" row used
mt-auto, which pinned it to the bottom of the fixed-height message list, causing it to float over the previous chat bubble instead of flowing under the latest message. Removingmt-autolets it render in normal order and scroll with the thread.Written for commit 464b216. Summary will update on new commits.