feat(in-app-help): create notes at root level

This commit is contained in:
Elian Doran
2025-02-02 14:17:43 +02:00
parent 58e82fb0f8
commit f1d641ac32
3 changed files with 60 additions and 10 deletions

View File

@@ -8,10 +8,10 @@ export interface NoteMetaFile {
}
export default interface NoteMeta {
noteId?: string;
noteId: string;
notePath?: string[];
isClone?: boolean;
title?: string;
title: string;
notePosition?: number;
prefix?: string | null;
isExpanded?: boolean;