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

@ -1 +1 @@
Subproject commit 803dec26e7dbc1a31906349e7b2c9ddd67ef6c8a
Subproject commit 84aab0cb24b8418c625c28c79e8c190861531c5f

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);
}
}