mirror of
				https://github.com/zadam/trilium.git
				synced 2025-10-31 10:26:08 +01:00 
			
		
		
		
	hack when hoisted note is cloned then it could be filtered multiple times while we want only 1
This commit is contained in:
		| @@ -1210,7 +1210,16 @@ export default class NoteTreeWidget extends TabAwareWidget { | |||||||
|                 this.tree.clearFilter(); |                 this.tree.clearFilter(); | ||||||
|             } |             } | ||||||
|             else { |             else { | ||||||
|                 this.tree.filterBranches(node => node.data.noteId === this.tabContext.hoistedNoteId); |                 let found = false; | ||||||
|  |  | ||||||
|  |                 // hack when hoisted note is cloned then it could be filtered multiple times while we want only 1 | ||||||
|  |                 this.tree.filterBranches(node => { | ||||||
|  |                     if (found) { | ||||||
|  |                         return false; | ||||||
|  |                     } | ||||||
|  |  | ||||||
|  |                     return found = (node.data.noteId === this.tabContext.hoistedNoteId); | ||||||
|  |                 }); | ||||||
|             } |             } | ||||||
|         } |         } | ||||||
|     } |     } | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user