From 3561a4f14df3baba5a829829eeacf3566fcbdcab Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Thu, 11 Dec 2025 16:38:31 +0200 Subject: [PATCH] feat(note_info): add back tooltip for note size --- apps/client/src/widgets/BreadcrumbBadges.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/client/src/widgets/BreadcrumbBadges.tsx b/apps/client/src/widgets/BreadcrumbBadges.tsx index 1d360cbc5..a50eab5fe 100644 --- a/apps/client/src/widgets/BreadcrumbBadges.tsx +++ b/apps/client/src/widgets/BreadcrumbBadges.tsx @@ -39,16 +39,16 @@ function NoteInfoBadge() { {note.type} {note.mime && ({note.mime})}} /> {note.noteId}} /> - } /> + } /> ); } -function NoteInfoValue({ text, value }: { text: string; value: ComponentChildren }) { +function NoteInfoValue({ text, title, value }: { text: string; title?: string, value: ComponentChildren }) { return (
  • - {text}{": "} + {text}{": "} {value}
  • );