diff --git a/apps/api/src/app/export/export.service.ts b/apps/api/src/app/export/export.service.ts index fb7e09d41..f717a3ead 100644 --- a/apps/api/src/app/export/export.service.ts +++ b/apps/api/src/app/export/export.service.ts @@ -77,7 +77,10 @@ export class ExportService { currency: SymbolProfile.currency, dataSource: SymbolProfile.dataSource, date: date.toISOString(), - symbol: type === 'ITEM' ? SymbolProfile.name : SymbolProfile.symbol + symbol: + type === 'FEE' || type === 'ITEM' || type === 'LIABILITY' + ? SymbolProfile.name + : SymbolProfile.symbol }; } )