mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-05 09:10:53 +01:00
export vault event
This commit is contained in:
parent
9b7c574bb1
commit
d90b61c225
2
jslib
2
jslib
@ -1 +1 @@
|
||||
Subproject commit 803dec26e7dbc1a31906349e7b2c9ddd67ef6c8a
|
||||
Subproject commit 84aab0cb24b8418c625c28c79e8c190861531c5f
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user