mirror of
				https://github.com/zadam/trilium.git
				synced 2025-10-31 10:26:08 +01:00 
			
		
		
		
	Filter excludeFromNoteMap from backlinks
This commit is contained in:
		| @@ -299,7 +299,7 @@ function getBacklinks(req) { | |||||||
|  |  | ||||||
|     let backlinksWithExcerptCount = 0; |     let backlinksWithExcerptCount = 0; | ||||||
|  |  | ||||||
|     return backlinks.map(backlink => { |     return backlinks.filter(note => !note.getNote().hasLabel('excludeFromNoteMap')).map(backlink => { | ||||||
|         const sourceNote = backlink.note; |         const sourceNote = backlink.note; | ||||||
|  |  | ||||||
|         if (sourceNote.type !== 'text' || backlinksWithExcerptCount > 50) { |         if (sourceNote.type !== 'text' || backlinksWithExcerptCount > 50) { | ||||||
|   | |||||||
| @@ -315,7 +315,7 @@ function getBacklinkCount(req) { | |||||||
|     } |     } | ||||||
|     else { |     else { | ||||||
|         return { |         return { | ||||||
|             count: note.getTargetRelations().length |             count: note.getTargetRelations().filter(note => !note.getNote().hasLabel('excludeFromNoteMap')).length | ||||||
|         }; |         }; | ||||||
|     } |     } | ||||||
| } | } | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user