client: correct class names

This commit is contained in:
Adorian Doran 2024-12-05 02:09:04 +02:00
parent 79b1d01267
commit 603ae47225

View File

@ -281,11 +281,11 @@ async function getNoteTitleWithPathAsSuffix(notePath) {
$notePath.append($(`<span>`).text(path[segmentIndex]));
if (segmentIndex < path.length - 1) {
$notePath.append($(`<span class="path-bracket">`).text(" / "));
$notePath.append($(`<span class="path-delimiter">`).text(" / "));
}
}
$notePath.append($(`<span class="path-wrapper">)</span>)`));
$notePath.append($(`<span class="path-bracket">)</span>)`));
$titleWithPath.append($notePath);
}