diff --git a/jslib b/jslib index 36641f07b9..11fff06b8c 160000 --- a/jslib +++ b/jslib @@ -1 +1 @@ -Subproject commit 36641f07b9807d90270ccd743d16b903cb558078 +Subproject commit 11fff06b8cd10468ffac617ab8674ba7ea6651a9 diff --git a/src/app/vault/view.component.ts b/src/app/vault/view.component.ts index 949b3ec737..5e554234a7 100644 --- a/src/app/vault/view.component.ts +++ b/src/app/vault/view.component.ts @@ -7,6 +7,7 @@ import { Output, } from '@angular/core'; +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'; @@ -39,10 +40,10 @@ export class ViewComponent extends BaseViewComponent implements OnChanges { cryptoService: CryptoService, platformUtilsService: PlatformUtilsService, auditService: AuditService, broadcasterService: BroadcasterService, ngZone: NgZone, changeDetectorRef: ChangeDetectorRef, - userService: UserService, eventService: EventService, + userService: UserService, eventService: EventService, apiService: ApiService, private messagingService: MessagingService, private storageService: StorageService) { super(cipherService, totpService, tokenService, i18nService, cryptoService, platformUtilsService, - auditService, window, broadcasterService, ngZone, changeDetectorRef, userService, eventService); + auditService, window, broadcasterService, ngZone, changeDetectorRef, userService, eventService, apiService); } ngOnInit() { super.ngOnInit();