mirror of
https://github.com/zadam/trilium.git
synced 2025-11-10 15:25:51 +01:00
chore(react/type_widget): port attachment detail
This commit is contained in:
@@ -18,7 +18,7 @@ import Image from "./type_widgets/Image";
|
||||
import { ReadOnlyCode, EditableCode } from "./type_widgets/code/Code";
|
||||
import Mermaid from "./type_widgets/Mermaid";
|
||||
import MindMap from "./type_widgets/MindMap";
|
||||
import { AttachmentList } from "./type_widgets/Attachment";
|
||||
import { AttachmentDetail, AttachmentList } from "./type_widgets/Attachment";
|
||||
|
||||
/**
|
||||
* A `NoteType` altered by the note detail widget, taking into consideration whether the note is editable or not and adding special note types such as an empty one,
|
||||
@@ -100,6 +100,7 @@ function getCorrespondingWidget(noteType: ExtendedNoteType | undefined, props: T
|
||||
case "mermaid": return <Mermaid {...props} />
|
||||
case "mindMap": return <MindMap {...props} />
|
||||
case "attachmentList": return <AttachmentList {...props} />
|
||||
case "attachmentDetail": return <AttachmentDetail {...props} />
|
||||
default: break;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user