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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

2
jslib

@ -1 +1 @@
Subproject commit 0565d6f66750ab084c0398e38309e222b3bc2963
Subproject commit dcbd09e736b516b359369f9d9fe5b0f5a6c2a928

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'));