mirror of
https://github.com/zadam/trilium.git
synced 2025-11-10 15:25:51 +01:00
chore(react/type_widget): bring back read-only temporary disable
This commit is contained in:
@@ -65,12 +65,18 @@ function useNoteInfo() {
|
||||
const [ note, setNote ] = useState<FNote | null | undefined>();
|
||||
const [ type, setType ] = useState<ExtendedNoteType>();
|
||||
|
||||
useEffect(() => {
|
||||
function refresh() {
|
||||
getWidgetType(actualNote, noteContext).then(type => {
|
||||
setNote(actualNote);
|
||||
setType(type);
|
||||
});
|
||||
}, [ actualNote, noteContext ]);
|
||||
}
|
||||
|
||||
useEffect(refresh, [ actualNote, noteContext]);
|
||||
useTriliumEvent("readOnlyTemporarilyDisabled", ({ noteContext: eventNoteContext }) => {
|
||||
if (eventNoteContext?.ntxId !== noteContext?.ntxId) return;
|
||||
refresh();
|
||||
});
|
||||
|
||||
return { note, type, noteContext, parentComponent };
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user