diff --git a/src/app/core/services/csv-export-service.ts b/src/app/core/services/csv-export-service.ts index 4f30ca04..5bb989c2 100644 --- a/src/app/core/services/csv-export-service.ts +++ b/src/app/core/services/csv-export-service.ts @@ -45,7 +45,7 @@ export class CsvExportService extends AdditionalInterventionResolver { } private checkBlankValues(field, prepend = '', append = '', isReplacementValue = true) { - if (field === undefined || field === null || field === '' || field === []) { + if (field === undefined || field === null || field.trim === '' || field === []) { return isReplacementValue ? this.emptyCellValue : ''; } else { return `${prepend}${field}${append}`;