From 94c5fba66f582ac91c6aaa9f712a92f271f4e0de Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Mon, 2 Sep 2024 23:31:49 +0300 Subject: [PATCH] server: Fix import of mind map notes --- src/becca/entities/rows.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/becca/entities/rows.ts b/src/becca/entities/rows.ts index 6c46bf301..a656365c6 100644 --- a/src/becca/entities/rows.ts +++ b/src/becca/entities/rows.ts @@ -91,7 +91,7 @@ export interface BranchRow { * end user. Those types should be used only for checking against, they are * not for direct use. */ -export const ALLOWED_NOTE_TYPES = [ "file", "image", "search", "noteMap", "launcher", "doc", "contentWidget", "text", "relationMap", "render", "canvas", "mermaid", "book", "webView", "code" ] as const; +export const ALLOWED_NOTE_TYPES = [ "file", "image", "search", "noteMap", "launcher", "doc", "contentWidget", "text", "relationMap", "render", "canvas", "mermaid", "book", "webView", "code", "mindMap" ] as const; export type NoteType = typeof ALLOWED_NOTE_TYPES[number]; export interface NoteRow {