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}
  • );