diff --git a/src/app/bulk-import/bulk-import-page.component.html b/src/app/bulk-import/bulk-import-page.component.html index f8a41343915..86f44956da6 100644 --- a/src/app/bulk-import/bulk-import-page.component.html +++ b/src/app/bulk-import/bulk-import-page.component.html @@ -13,7 +13,7 @@

{{ 'bulk-import.title' | translate }}

- + - - \ No newline at end of file + diff --git a/src/app/bulk-import/bulk-import-page.component.spec.ts b/src/app/bulk-import/bulk-import-page.component.spec.ts index 1051c39bac2..12c44272e3b 100644 --- a/src/app/bulk-import/bulk-import-page.component.spec.ts +++ b/src/app/bulk-import/bulk-import-page.component.spec.ts @@ -115,7 +115,7 @@ describe('BulkImportPageComponent', () => { expect(scriptDataService.invoke).toHaveBeenCalledWith('bulk-import', [ { name: '-c', value: '626b80c5-ef15-4b29-8e69-bda89b0a7acf' }, { name: '-f', value: 'test.xls' }, - { name: '-e', value: true } + { name: '-er', value: true } ], [file]); }); diff --git a/src/app/bulk-import/bulk-import-page.component.ts b/src/app/bulk-import/bulk-import-page.component.ts index a665fa86225..8319d950004 100644 --- a/src/app/bulk-import/bulk-import-page.component.ts +++ b/src/app/bulk-import/bulk-import-page.component.ts @@ -92,7 +92,7 @@ export class BulkImportPageComponent implements OnInit, OnDestroy { ]; if (values.abortOnError) { - stringParameters.push( { name: '-e', value: values.abortOnError } ); + stringParameters.push( { name: '-er', value: values.abortOnError } ); } this.scriptService.invoke('bulk-import', stringParameters, [file])