mirror of
https://github.com/zadam/trilium.git
synced 2025-11-26 02:24:23 +01:00
fix(note_list): not rendering correctly when switching notes
This commit is contained in:
parent
d6de7cca96
commit
976b1e1e0f
@ -56,7 +56,7 @@ export default function NoteList(props: Pick<NoteListProps, "displayOnlyCollecti
|
|||||||
const [ enabled, setEnabled ] = useState(noteContext?.hasNoteList());
|
const [ enabled, setEnabled ] = useState(noteContext?.hasNoteList());
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
setEnabled(noteContext?.hasNoteList());
|
setEnabled(noteContext?.hasNoteList());
|
||||||
}, [ noteContext, viewType, viewScope?.viewMode ])
|
}, [ note, noteContext, viewType, viewScope?.viewMode ])
|
||||||
return <CustomNoteList viewType={viewType} note={note} isEnabled={!!enabled} notePath={notePath} ntxId={ntxId} {...props} />
|
return <CustomNoteList viewType={viewType} note={note} isEnabled={!!enabled} notePath={notePath} ntxId={ntxId} {...props} />
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user