export deps adjusted

This commit is contained in:
Kyle Spearrin 2018-08-14 15:12:38 -04:00
parent 2613d71cf3
commit 6c82c2d388
2 changed files with 5 additions and 6 deletions

2
jslib

@ -1 +1 @@
Subproject commit a7bbdf9c9391c8d58fee0231e1d4cfe34af55cdb
Subproject commit 9f26f9f37771f8f450b380b4c05ffd5d9164f099

View File

@ -8,7 +8,6 @@ import { CryptoService } from 'jslib/abstractions/crypto.service';
import { ExportService } from 'jslib/abstractions/export.service';
import { I18nService } from 'jslib/abstractions/i18n.service';
import { PlatformUtilsService } from 'jslib/abstractions/platformUtils.service';
import { UserService } from 'jslib/abstractions/user.service';
import { ExportComponent as BaseExportComponent } from 'jslib/angular/components/export.component';
@ -18,10 +17,10 @@ import { ExportComponent as BaseExportComponent } from 'jslib/angular/components
})
export class ExportComponent extends BaseExportComponent {
constructor(analytics: Angulartics2, toasterService: ToasterService,
cryptoService: CryptoService, userService: UserService,
i18nService: I18nService, platformUtilsService: PlatformUtilsService,
exportService: ExportService, private router: Router) {
super(analytics, toasterService, cryptoService, userService, i18nService, platformUtilsService,
cryptoService: CryptoService, i18nService: I18nService,
platformUtilsService: PlatformUtilsService, exportService: ExportService,
private router: Router) {
super(analytics, toasterService, cryptoService, i18nService, platformUtilsService,
exportService, window);
}