diff --git a/client/src/app/site/pages/meetings/pages/motions/services/export/motion-csv-export.service/motion-csv-export.service.ts b/client/src/app/site/pages/meetings/pages/motions/services/export/motion-csv-export.service/motion-csv-export.service.ts index 230735851b..7c3173bb84 100644 --- a/client/src/app/site/pages/meetings/pages/motions/services/export/motion-csv-export.service/motion-csv-export.service.ts +++ b/client/src/app/site/pages/meetings/pages/motions/services/export/motion-csv-export.service/motion-csv-export.service.ts @@ -105,7 +105,7 @@ export class MotionCsvExportService { if (option === `submitters`) { return { label: `submitters`, - map: motion => motion.mapSubmittersWithAdditional(s => s.short_name).join(`, `) + map: motion => motion.mapSubmittersWithAdditional(s => s.full_name).join(`, `) }; } else if (option === `recommendation`) { return { diff --git a/client/src/app/site/pages/meetings/pages/motions/services/export/motion-xlsx-export.service/motion-xlsx-export.service.ts b/client/src/app/site/pages/meetings/pages/motions/services/export/motion-xlsx-export.service/motion-xlsx-export.service.ts index 62f38f3ee3..ce89c9579f 100644 --- a/client/src/app/site/pages/meetings/pages/motions/services/export/motion-xlsx-export.service/motion-xlsx-export.service.ts +++ b/client/src/app/site/pages/meetings/pages/motions/services/export/motion-xlsx-export.service/motion-xlsx-export.service.ts @@ -159,7 +159,7 @@ export class MotionXlsxExportService { ...properties.map(property => { const motionProp = motion[property as keyof ViewMotion]; if (property === `submitters`) { - return motion.mapSubmittersWithAdditional(s => s.short_name).join(`, `); + return motion.mapSubmittersWithAdditional(s => s.full_name).join(`, `); } if (property === `speakers`) { return motion.list_of_speakers && motion.list_of_speakers.waitingSpeakerAmount > 0