1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-11 13:53:34 +00:00

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

Submodule jslib updated: 803dec26e7...84aab0cb24

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() {