WIP per-tab hoisting

This commit is contained in:
zadam
2020-11-22 23:05:02 +01:00
parent 5bbec118e4
commit 4bd86a6dfa
11 changed files with 64 additions and 66 deletions

View File

@@ -263,8 +263,10 @@ export default class NoteDetailWidget extends TabAwareWidget {
});
}
hoistedNoteChangedEvent() {
this.refresh();
hoistedNoteChangedEvent({tabId}) {
if (this.isTab(tabId)) {
this.refresh();
}
}
async entitiesReloadedEvent({loadResults}) {