From 8434549a9b0bc3c6373c3319c06971e004305f25 Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Tue, 23 Dec 2025 19:15:48 +0200 Subject: [PATCH] feat(breadcrumbs): display separator even if no child notes --- apps/client/src/widgets/layout/Breadcrumb.tsx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/apps/client/src/widgets/layout/Breadcrumb.tsx b/apps/client/src/widgets/layout/Breadcrumb.tsx index bc1494d3d..043a68206 100644 --- a/apps/client/src/widgets/layout/Breadcrumb.tsx +++ b/apps/client/src/widgets/layout/Breadcrumb.tsx @@ -65,8 +65,7 @@ export default function Breadcrumb() { ? : } - {(index < notePaths.length - 1 || note?.hasChildren()) && - } + )) )} @@ -226,7 +225,7 @@ function BreadcrumbSeparatorDropdownContent({ notePath, noteContext, activeNoteP ; })} - + {childNotes.length > 0 && } note_create.createNote(notePath, { activate: true })}