From 603ae4722576776ed6982a1deb46b4e91ff093fc Mon Sep 17 00:00:00 2001 From: Adorian Doran Date: Thu, 5 Dec 2024 02:09:04 +0200 Subject: [PATCH] client: correct class names --- src/public/app/services/tree.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/public/app/services/tree.js b/src/public/app/services/tree.js index a721b76e7..341f81857 100644 --- a/src/public/app/services/tree.js +++ b/src/public/app/services/tree.js @@ -281,11 +281,11 @@ async function getNoteTitleWithPathAsSuffix(notePath) { $notePath.append($(``).text(path[segmentIndex])); if (segmentIndex < path.length - 1) { - $notePath.append($(``).text(" / ")); + $notePath.append($(``).text(" / ")); } } - $notePath.append($(`))`)); + $notePath.append($(`))`)); $titleWithPath.append($notePath); }