This commit is contained in:
zadam
2023-03-15 22:44:08 +01:00
parent 1faf8225c7
commit 5a8e216dec
16 changed files with 275 additions and 158 deletions

View File

@@ -94,8 +94,10 @@ export default class LoadResults {
return componentIds && componentIds.find(sId => sId !== componentId) !== undefined;
}
addNoteContent(noteId, componentId) {
this.contentNoteIdToComponentId.push({noteId, componentId});
addNoteContent(noteIds, componentId) {
for (const noteId of noteIds) {
this.contentNoteIdToComponentId.push({noteId, componentId});
}
}
isNoteContentReloaded(noteId, componentId) {