From 7222b233f0f541b6bcd3186aa6f54c3a191ce0d1 Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Tue, 16 Dec 2025 17:47:31 +0200 Subject: [PATCH] feat(note_info): separate note type from mime type --- apps/client/src/translations/en/translation.json | 1 + apps/client/src/widgets/layout/StatusBar.tsx | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/apps/client/src/translations/en/translation.json b/apps/client/src/translations/en/translation.json index 10a3cb8cb..8764f8001 100644 --- a/apps/client/src/translations/en/translation.json +++ b/apps/client/src/translations/en/translation.json @@ -825,6 +825,7 @@ "created": "Created", "modified": "Modified", "type": "Type", + "mime": "MIME type", "note_size": "Note size", "note_size_info": "Note size provides rough estimate of storage requirements for this note. It takes into account note's content and content of its note revisions.", "calculate": "calculate", diff --git a/apps/client/src/widgets/layout/StatusBar.tsx b/apps/client/src/widgets/layout/StatusBar.tsx index 9b99524b0..efe513957 100644 --- a/apps/client/src/widgets/layout/StatusBar.tsx +++ b/apps/client/src/widgets/layout/StatusBar.tsx @@ -232,7 +232,8 @@ export function NoteInfoBadge({ note, setSimilarNotesShown }: NoteInfoContext) { {originalFileName && } - {note.type} {note.mime && ({note.mime})}} /> + + {note.noteId}} /> } />