Merged
Conversation
Contributor
|
Preview Deployment
|
Contributor
Greptile OverviewGreptile SummaryFixed multiple UI consistency issues across timeline headers, expandable text display, and source tags:
All changes are focused styling and performance improvements with no breaking changes or logic modifications. Confidence Score: 4/5
Important Files Changed
Last reviewed commit: 824caab |
| if (items.length > initialCount) { | ||
| initial.push({ type: "more", batchId: 0 }); | ||
| if (effectiveCount < items.length) { | ||
| chips.push({ type: "more", batchId: 0 }); |
Contributor
There was a problem hiding this comment.
batchId field is no longer used and can be removed from the type
Suggested change
| chips.push({ type: "more", batchId: 0 }); | |
| chips.push({ type: "more" }); |
Contributor
🖼️ Visual Regression Report
|
raunakab
approved these changes
Feb 13, 2026
Contributor
raunakab
left a comment
There was a problem hiding this comment.
Approving! Just a few small comments here.
| collapsible ? ( | ||
| <Button | ||
| prominence="tertiary" | ||
| size="sm" |
Contributor
There was a problem hiding this comment.
I believe this one is supposed to be "md"?
Contributor
There was a problem hiding this comment.
Approving this for now, but I will be throwing in some important LineItemLayout fixes which this component should use.
824caab to
c3e69db
Compare
Subash-Mohan
added a commit
that referenced
this pull request
Feb 20, 2026
Subash-Mohan
added a commit
that referenced
this pull request
Feb 20, 2026
Danelegend
pushed a commit
that referenced
this pull request
Feb 20, 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.
Description
boundaries, preventing partial block clipping and scroll jitter
simple visibleCount state
How Has This Been Tested?
Tested all he above scenarios
Additional Options
Summary by cubic
Fixes streaming text cutoff and jitter by snapping content to block boundaries with CSS transforms, and aligns button sizing and spacing for cleaner timelines. Also reduces SearchChipList re-renders to improve timeline performance.
Written for commit c3e69db. Summary will update on new commits.