1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-15 07:43:35 +00:00

Update view di requirements (#1796)

* Update view di requirements

* Update jslib
This commit is contained in:
Matt Gibson
2021-04-22 09:40:31 -05:00
committed by GitHub
parent 1fa3e3d68b
commit 91daa2729c
2 changed files with 4 additions and 3 deletions

2
jslib

Submodule jslib updated: 3c872e56f2...11fff06b8c

View File

@@ -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() {