mirror of
https://github.com/zadam/trilium.git
synced 2025-11-03 20:06:08 +01:00
apply color label also on note map, #3443
This commit is contained in:
@@ -116,7 +116,8 @@ function getLinkMap(req) {
|
||||
return [
|
||||
note.noteId,
|
||||
note.getTitleOrProtected(),
|
||||
note.type
|
||||
note.type,
|
||||
note.getLabelValue('color')
|
||||
];
|
||||
});
|
||||
|
||||
@@ -175,7 +176,8 @@ function getTreeMap(req) {
|
||||
.map(note => [
|
||||
note.noteId,
|
||||
note.getTitleOrProtected(),
|
||||
note.type
|
||||
note.type,
|
||||
note.getLabelValue('color')
|
||||
]);
|
||||
|
||||
const noteIds = new Set();
|
||||
|
||||
Reference in New Issue
Block a user