From 5958fa1fc4c87e39426783bb7d34a0ba682c7fda Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Sat, 14 Apr 2018 13:40:25 -0400 Subject: [PATCH] only wait 5 seconds to load vault --- jslib | 2 +- src/popup/vault/current-tab.component.ts | 2 +- src/popup/vault/groupings.component.ts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/jslib b/jslib index 831b4cff7b..2930d7daf7 160000 --- a/jslib +++ b/jslib @@ -1 +1 @@ -Subproject commit 831b4cff7b8a4969bb050cad5e16f372e0c5ec30 +Subproject commit 2930d7daf7ce31ea029153a5b54f167277ce3ea0 diff --git a/src/popup/vault/current-tab.component.ts b/src/popup/vault/current-tab.component.ts index e13d0562ef..2cb2bc0e78 100644 --- a/src/popup/vault/current-tab.component.ts +++ b/src/popup/vault/current-tab.component.ts @@ -97,7 +97,7 @@ export class CurrentTabComponent implements OnInit, OnDestroy { if (!this.loaded) { await this.load(); } - }, 10000); + }, 5000); } } diff --git a/src/popup/vault/groupings.component.ts b/src/popup/vault/groupings.component.ts index 83167f068e..0fc02d7541 100644 --- a/src/popup/vault/groupings.component.ts +++ b/src/popup/vault/groupings.component.ts @@ -114,7 +114,7 @@ export class GroupingsComponent extends BaseGroupingsComponent implements OnInit if (!this.loaded) { this.load(); } - }, 10000); + }, 5000); } if (!this.syncService.syncInProgress || restoredScopeState) {