only wait 5 seconds to load vault
This commit is contained in:
parent
10014c8b09
commit
5958fa1fc4
2
jslib
2
jslib
|
@ -1 +1 @@
|
||||||
Subproject commit 831b4cff7b8a4969bb050cad5e16f372e0c5ec30
|
Subproject commit 2930d7daf7ce31ea029153a5b54f167277ce3ea0
|
|
@ -97,7 +97,7 @@ export class CurrentTabComponent implements OnInit, OnDestroy {
|
||||||
if (!this.loaded) {
|
if (!this.loaded) {
|
||||||
await this.load();
|
await this.load();
|
||||||
}
|
}
|
||||||
}, 10000);
|
}, 5000);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -114,7 +114,7 @@ export class GroupingsComponent extends BaseGroupingsComponent implements OnInit
|
||||||
if (!this.loaded) {
|
if (!this.loaded) {
|
||||||
this.load();
|
this.load();
|
||||||
}
|
}
|
||||||
}, 10000);
|
}, 5000);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!this.syncService.syncInProgress || restoredScopeState) {
|
if (!this.syncService.syncInProgress || restoredScopeState) {
|
||||||
|
|
Loading…
Reference in New Issue