fix(coding-agent): use smaller bullet marker with space for active path

This commit is contained in:
Mario Zechner 2025-12-29 15:26:58 +01:00
parent 3493e47b4d
commit 97e5e8c918

View file

@ -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);