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

export vault event

This commit is contained in:
Kyle Spearrin
2019-07-12 17:11:39 -04:00
parent 9b7c574bb1
commit d90b61c225
2 changed files with 5 additions and 3 deletions

2
jslib

Submodule jslib updated: 803dec26e7...84aab0cb24

View File

@@ -1,6 +1,7 @@
import { Component } from '@angular/core';
import { CryptoService } from 'jslib/abstractions/crypto.service';
import { EventService } from 'jslib/abstractions/event.service';
import { ExportService } from 'jslib/abstractions/export.service';
import { I18nService } from 'jslib/abstractions/i18n.service';
import { PlatformUtilsService } from 'jslib/abstractions/platformUtils.service';
@@ -13,7 +14,8 @@ import { ExportComponent as BaseExportComponent } from 'jslib/angular/components
})
export class ExportComponent extends BaseExportComponent {
constructor(cryptoService: CryptoService, i18nService: I18nService,
platformUtilsService: PlatformUtilsService, exportService: ExportService) {
super(cryptoService, i18nService, platformUtilsService, exportService, window);
platformUtilsService: PlatformUtilsService, exportService: ExportService,
eventService: EventService) {
super(cryptoService, i18nService, platformUtilsService, exportService, eventService, window);
}
}