1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-19 01:33:33 +00:00

pass messagingService dependency

This commit is contained in:
Kyle Spearrin
2019-01-03 10:24:29 -05:00
parent 6cffabe259
commit 9728116836
3 changed files with 3 additions and 4 deletions

2
jslib

Submodule jslib updated: 91bebbbd62...fc5fcb905f

View File

@@ -34,8 +34,7 @@ export class AddEditComponent extends BaseAddEditComponent {
auditService: AuditService, stateService: StateService,
userService: UserService, collectionService: CollectionService,
totpService: TotpService, passwordGenerationService: PasswordGenerationService,
private apiService: ApiService,
messagingService: MessagingService) {
private apiService: ApiService, messagingService: MessagingService) {
super(cipherService, folderService, i18nService, platformUtilsService, auditService, stateService,
userService, collectionService, totpService, passwordGenerationService, messagingService);
}

View File

@@ -41,7 +41,7 @@ export class AddEditComponent extends BaseAddEditComponent {
protected totpService: TotpService, protected passwordGenerationService: PasswordGenerationService,
protected messagingService: MessagingService) {
super(cipherService, folderService, i18nService, platformUtilsService, auditService, stateService,
userService, collectionService);
userService, collectionService, messagingService);
}
async ngOnInit() {