fix: rm open in button from task details popover#1972
Conversation
Greptile SummaryThis PR removes the "Open In" button from the task details popover, where it duplicated the same control already present in the titlebar's right slot. The
Confidence Score: 5/5Safe to merge — one-line removal of a duplicated UI button with no effect on surrounding logic. The only change is deleting a single JSX element from a popover. The OpenInMenu control continues to render correctly in the titlebar right slot, and neither the isRemoteProject guard nor the import become orphaned. No state, props, or side effects are touched. No files require special attention.
|
| Filename | Overview |
|---|---|
| src/renderer/features/tasks/task-titlebar.tsx | Removes the duplicate OpenInMenu from inside the task details popover; the button still exists in the titlebar's right slot. isRemoteProject and the OpenInMenu import remain in use — no dead code introduced. |
Flowchart
%%{init: {'theme': 'neutral'}}%%
flowchart TD
A[ActiveTaskTitlebar] --> B[Titlebar leftSlot]
A --> C[Titlebar rightSlot]
B --> D[Popover Trigger]
D --> E[PopoverContent]
E --> F[Task name display]
E --> G[Git branch info + buttons]
E --> H[IssueSelector]
C --> I[DevServerPills]
C --> J[OpenInMenu non-remote only]
C --> K[Terminal toggle]
C --> L[Sidebar tab toggles]
Reviews (1): Last reviewed commit: "fix: rm open in button from task details..." | Re-trigger Greptile
No description provided.