1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-13 14:53:33 +00:00

only wait 5 seconds to load vault

This commit is contained in:
Kyle Spearrin
2018-04-14 13:40:25 -04:00
parent 10014c8b09
commit 5958fa1fc4
3 changed files with 3 additions and 3 deletions

2
jslib

Submodule jslib updated: 831b4cff7b...2930d7daf7

View File

@@ -97,7 +97,7 @@ export class CurrentTabComponent implements OnInit, OnDestroy {
if (!this.loaded) {
await this.load();
}
}, 10000);
}, 5000);
}
}

View File

@@ -114,7 +114,7 @@ export class GroupingsComponent extends BaseGroupingsComponent implements OnInit
if (!this.loaded) {
this.load();
}
}, 10000);
}, 5000);
}
if (!this.syncService.syncInProgress || restoredScopeState) {