attribute sync should trigger note reload, fixes #551

This commit is contained in:
zadam
2019-06-01 12:14:09 +02:00
parent 237749e4af
commit d08a36174d
2 changed files with 19 additions and 4 deletions

View File

@@ -337,10 +337,18 @@ function fireDetailLoaded() {
}
messagingService.subscribeToSyncMessages(syncData => {
for (const sync of syncData) {
if (sync.entityName === 'notes') {
refreshTabs(null, sync.entityId);
}
const noteIdsToRefresh = new Set();
syncData
.filter(sync => sync.entityName === 'notes')
.forEach(sync => noteIdsToRefresh.add(sync.entityId));
syncData
.filter(sync => sync.entityName === 'attributes')
.forEach(sync => noteIdsToRefresh.add(sync.noteId));
for (const noteId of noteIdsToRefresh) {
refreshTabs(null, noteId);
}
});