export vault event

This commit is contained in:
Kyle Spearrin 2019-07-12 17:11:43 -04:00
parent 2c6b3927d4
commit a30b941a1d
2 changed files with 4 additions and 3 deletions

2
jslib

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

View File

@ -2,6 +2,7 @@ import { Component } from '@angular/core';
import { Router } from '@angular/router';
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';
@ -15,8 +16,8 @@ import { ExportComponent as BaseExportComponent } from 'jslib/angular/components
export class ExportComponent extends BaseExportComponent {
constructor(cryptoService: CryptoService, i18nService: I18nService,
platformUtilsService: PlatformUtilsService, exportService: ExportService,
private router: Router) {
super(cryptoService, i18nService, platformUtilsService, exportService, window);
eventService: EventService, private router: Router) {
super(cryptoService, i18nService, platformUtilsService, exportService, eventService, window);
}
protected saved() {