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