From 4e2cd4ac35cfc9489ae2320d7019818579bce829 Mon Sep 17 00:00:00 2001 From: Adorian Doran Date: Thu, 5 Dec 2024 02:56:44 +0200 Subject: [PATCH] client: add a leading whitespace to note paths --- src/public/app/services/tree.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/public/app/services/tree.js b/src/public/app/services/tree.js index 341f81857..2726036b9 100644 --- a/src/public/app/services/tree.js +++ b/src/public/app/services/tree.js @@ -275,7 +275,7 @@ async function getNoteTitleWithPathAsSuffix(notePath) { if (path.length > 0) { const $notePath = $(''); - $notePath.append($(`()`)); + $notePath.append($(` ()`)); for (let segmentIndex = 0; segmentIndex < path.length; segmentIndex++) { $notePath.append($(``).text(path[segmentIndex]));