1
0
mirror of https://github.com/bitwarden/desktop.git synced 2024-06-25 10:26:00 +02:00

Merge pull request #850 from bitwarden/use-attachment-download-data-on-cipher-view-component

Update view DI
This commit is contained in:
Matt Gibson 2021-04-22 09:54:16 -05:00 committed by GitHub
commit 7f49c8cb98
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 3 deletions

2
jslib

@ -1 +1 @@
Subproject commit 36641f07b9807d90270ccd743d16b903cb558078
Subproject commit 11fff06b8cd10468ffac617ab8674ba7ea6651a9

View File

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