feat(server): improve note path display to use chevrons instead of slashes to separate notes (closes #762)

This commit is contained in:
Elian Doran
2026-04-11 11:43:57 +03:00
parent 6c31b35f08
commit 602bebe498

View File

@@ -106,7 +106,7 @@ function getNoteTitleArrayForPath(notePathArray: string[]) {
function getNoteTitleForPath(notePathArray: string[]) {
const titles = getNoteTitleArrayForPath(notePathArray);
return titles.join(" / ");
return titles.join(" ");
}
export default {