mirror of
				https://github.com/zadam/trilium.git
				synced 2025-10-31 02:16:05 +01:00 
			
		
		
		
	fixes for undefined parent note #3066
This commit is contained in:
		| @@ -10,7 +10,7 @@ function getNotesAndBranchesAndAttributes(noteIds) { | ||||
|     const collectedBranchIds = new Set(); | ||||
|  | ||||
|     function collectEntityIds(note) { | ||||
|         if (collectedNoteIds.has(note.noteId)) { | ||||
|         if (!note || collectedNoteIds.has(note.noteId)) { | ||||
|             return; | ||||
|         } | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user