make sure vault load only happens once per call
This commit is contained in:
parent
b376cc5255
commit
25a43b7618
|
@ -163,7 +163,12 @@ export class VaultComponent implements OnInit, OnDestroy {
|
|||
}
|
||||
|
||||
async load() {
|
||||
let loaded = false;
|
||||
const queryParamsSub = this.route.queryParams.subscribe(async (params) => {
|
||||
if (loaded) {
|
||||
return;
|
||||
}
|
||||
loaded = true;
|
||||
await this.groupingsComponent.load();
|
||||
|
||||
if (params == null) {
|
||||
|
|
Loading…
Reference in New Issue