always show Note paths in Status Bar

useful for a opened from search tree (no other way to find out a note path)
This commit is contained in:
contributor 2026-02-05 17:15:53 +02:00
parent 3c3e73edae
commit b33fe2ca3a

View File

@ -414,7 +414,7 @@ function NotePaths({ note, hoistedNoteId, notePath }: StatusBarContext) {
const dropdownRef = useRef<BootstrapDropdown>(null);
const sortedNotePaths = useSortedNotePaths(note, hoistedNoteId);
const count = sortedNotePaths?.length ?? 0;
const enabled = count > 1;
const enabled = true;
// Keyboard shortcut.
useTriliumEvent("toggleRibbonTabNotePaths", () => enabled && dropdownRef.current?.show());