diff --git a/src/renderer/src/components/cmd-j/PaletteFilterChips.tsx b/src/renderer/src/components/cmd-j/PaletteFilterChips.tsx index 1ac3e71e989..e3777f89111 100644 --- a/src/renderer/src/components/cmd-j/PaletteFilterChips.tsx +++ b/src/renderer/src/components/cmd-j/PaletteFilterChips.tsx @@ -45,32 +45,47 @@ export default function PaletteFilterChips({ } return ( -
+ // Why: the scope is seeded from the sidebar, not chosen here, so it reads as metadata + // rather than as pills offering to undo an action the user never took. +
+ + {translate('worktreeJumpPalette.filter.scopedTo', 'Scoped to')} + {/* Why: horizontal scroll keeps every chip reachable without a hard +N dead-end. */} -
- {chips.map((chip) => ( - +
+ {chips.map((chip, index) => ( + + {index > 0 ? ( + + ) : null} + + ))}