mirror of
https://github.com/getcompanion-ai/co-mono.git
synced 2026-04-15 19:05:11 +00:00
fix(coding-agent): use smaller bullet marker with space for active path
This commit is contained in:
parent
3493e47b4d
commit
97e5e8c918
1 changed files with 1 additions and 1 deletions
|
|
@ -365,7 +365,7 @@ class TreeList implements Component {
|
|||
|
||||
// Active path marker - shown right before the entry text
|
||||
const isOnActivePath = this.activePathIds.has(entry.id);
|
||||
const pathMarker = isOnActivePath ? theme.fg("accent", "●") : "";
|
||||
const pathMarker = isOnActivePath ? theme.fg("accent", "• ") : "";
|
||||
|
||||
const label = flatNode.node.label ? theme.fg("warning", `[${flatNode.node.label}] `) : "";
|
||||
const content = this.getEntryDisplayText(flatNode.node, isSelected);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue