diff --git a/webapp/src/csvExporter.ts b/webapp/src/csvExporter.ts index ff8dd8670..75cbd3b14 100644 --- a/webapp/src/csvExporter.ts +++ b/webapp/src/csvExporter.ts @@ -78,8 +78,14 @@ class CsvExporter { const row: string[] = [] row.push(`"${this.encodeText(card.title)}"`) visibleProperties.forEach((template: IPropertyTemplate) => { - const propertyValue = card.fields.properties[template.id] + let propertyValue = card.fields.properties[template.id] const property = propsRegistry.get(template.type) + if (property.type === 'createdBy') { + propertyValue = card.createdBy + } + if (property.type === 'updatedBy') { + propertyValue = card.modifiedBy + } row.push(property.exportValue(propertyValue, card, template, intl)) }) rows.push(row)