1
0
mirror of https://github.com/bitwarden/web synced 2025-12-06 00:03:28 +00:00

update getImporter signature pass org id (#730)

This commit is contained in:
Kyle Spearrin
2020-12-07 13:02:56 -05:00
committed by GitHub
parent 7ebb046cd8
commit c37979e48d
2 changed files with 2 additions and 2 deletions

2
jslib

Submodule jslib updated: 0565d6f667...dcbd09e736

View File

@@ -47,7 +47,7 @@ export class ImportComponent implements OnInit {
}
async submit() {
const importer = this.importService.getImporter(this.format, this.organizationId != null);
const importer = this.importService.getImporter(this.format, this.organizationId);
if (importer === null) {
this.toasterService.popAsync('error', this.i18nService.t('errorOccurred'),
this.i18nService.t('selectFormat'));