From c37979e48dfdca422e29eb5242052d8cf44dce93 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Mon, 7 Dec 2020 13:02:56 -0500 Subject: [PATCH] update getImporter signature pass org id (#730) --- jslib | 2 +- src/app/tools/import.component.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/jslib b/jslib index 0565d6f667..dcbd09e736 160000 --- a/jslib +++ b/jslib @@ -1 +1 @@ -Subproject commit 0565d6f66750ab084c0398e38309e222b3bc2963 +Subproject commit dcbd09e736b516b359369f9d9fe5b0f5a6c2a928 diff --git a/src/app/tools/import.component.ts b/src/app/tools/import.component.ts index 042bdbe937..06923e5b14 100644 --- a/src/app/tools/import.component.ts +++ b/src/app/tools/import.component.ts @@ -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'));