fix lazy initialization of the sidebar

This commit is contained in:
zadam
2020-02-06 20:04:43 +01:00
parent d1bb62c40e
commit 8d49249ed7
5 changed files with 13 additions and 9 deletions

View File

@@ -78,6 +78,10 @@ export default class TabAwareWidget extends BasicWidget {
}
lazyLoadedListener() {
if (!this.tabContext) { // has not been loaded yet
this.tabContext = this.appContext.getActiveTabContext();
}
this.refresh();
}
}