Simplify task header badges for linked issues#825
Merged
arnestrickmann merged 3 commits intomainfrom Feb 11, 2026
Merged
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes and found 1 potential issue.
Bugbot Autofix is OFF. To automatically fix reported issues with Cloud Agents, enable Autofix in the Cursor dashboard.
Greptile OverviewGreptile SummarySimplifies the chat header by removing duplicate agent badge display. The PR extracts issue-badge rendering from Key changes:
Confidence Score: 5/5
|
| Filename | Overview |
|---|---|
| src/renderer/components/ChatInterface.tsx | Replaced AgentDisplay with TaskContextBadges, removing the agent and taskId props that are no longer needed for the simplified component. |
| src/renderer/components/TaskContextBadges.tsx | New component that extracts issue badge rendering from AgentDisplay, showing only Linear/GitHub/Jira context badges without agent info or comments popover. |
Sequence Diagram
sequenceDiagram
participant User
participant ChatInterface
participant TaskContextBadges
participant Electron
User->>ChatInterface: View chat with linked issue
ChatInterface->>TaskContextBadges: Render badges (linearIssue, githubIssue, jiraIssue)
TaskContextBadges->>User: Display issue badges
User->>TaskContextBadges: Click issue badge
TaskContextBadges->>Electron: openExternal(issue.url)
Electron->>User: Open issue in browser
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
Testing
Note
Low Risk
Low risk UI refactor that only changes which badges render in the chat header and trims unused props/assets; no data flow or persistence changes.
Overview
Simplifies the chat header so linked work items show only
TaskContextBadges(Linear/GitHub/Jira + comments) and removes the extra agent badge previously rendered alongside them.Refactors
TaskContextBadgesto drop theagentprop and all agent-logo/config code, and updates external link opening to usewindow.electronAPI?.openExternaldirectly.Written by Cursor Bugbot for commit 1f95dd1. This will update automatically on new commits. Configure here.