From 91daa2729cbe63e0cc1816b2b3f83c6b09cb97e9 Mon Sep 17 00:00:00 2001 From: Matt Gibson Date: Thu, 22 Apr 2021 09:40:31 -0500 Subject: [PATCH] Update view di requirements (#1796) * Update view di requirements * Update jslib --- jslib | 2 +- src/popup/vault/view.component.ts | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/jslib b/jslib index 3c872e56f2..11fff06b8c 160000 --- a/jslib +++ b/jslib @@ -1 +1 @@ -Subproject commit 3c872e56f27ae78fb922b765d7601886b5c39f78 +Subproject commit 11fff06b8cd10468ffac617ab8674ba7ea6651a9 diff --git a/src/popup/vault/view.component.ts b/src/popup/vault/view.component.ts index e0116bd7df..13168872ea 100644 --- a/src/popup/vault/view.component.ts +++ b/src/popup/vault/view.component.ts @@ -9,6 +9,7 @@ import { Router, } from '@angular/router'; +import { ApiService } from 'jslib/abstractions/api.service'; import { AuditService } from 'jslib/abstractions/audit.service'; import { CipherService } from 'jslib/abstractions/cipher.service'; import { CryptoService } from 'jslib/abstractions/crypto.service'; @@ -52,10 +53,10 @@ export class ViewComponent extends BaseViewComponent { private router: Router, private location: Location, broadcasterService: BroadcasterService, ngZone: NgZone, changeDetectorRef: ChangeDetectorRef, userService: UserService, - eventService: EventService, private autofillService: AutofillService, + eventService: EventService, private autofillService: AutofillService, apiService: ApiService, private messagingService: MessagingService, private popupUtilsService: PopupUtilsService) { super(cipherService, totpService, tokenService, i18nService, cryptoService, platformUtilsService, - auditService, window, broadcasterService, ngZone, changeDetectorRef, userService, eventService); + auditService, window, broadcasterService, ngZone, changeDetectorRef, userService, eventService, apiService); } ngOnInit() {