mirror of
https://github.com/zadam/trilium.git
synced 2025-12-20 15:19:56 +01:00
feat(note_actions): hide code notes from new layout
This commit is contained in:
@@ -184,11 +184,16 @@ function EditabilityDropdown({ note }: { note: FNote }) {
|
||||
function NoteTypeDropdown({ note }: { note: FNote }) {
|
||||
const currentNoteType = useNoteProperty(note, "type") ?? undefined;
|
||||
const currentNoteMime = useNoteProperty(note, "mime");
|
||||
const [ modalShown, setModalShown ] = useState(false);
|
||||
|
||||
return (
|
||||
<FormDropdownSubmenu title={t("basic_properties.note_type")} icon="bx bx-file" dropStart>
|
||||
<NoteTypeDropdownContent currentNoteType={currentNoteType} currentNoteMime={currentNoteMime} note={note} setModalShown={setModalShown} />
|
||||
<NoteTypeDropdownContent
|
||||
currentNoteType={currentNoteType}
|
||||
currentNoteMime={currentNoteMime}
|
||||
note={note}
|
||||
setModalShown={() => { /* no-op since no code notes are displayed here */ }}
|
||||
noCodeNotes
|
||||
/>
|
||||
</FormDropdownSubmenu>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user