Skip to content

Commit

Permalink
Change usbmitter export name (#4132)
Browse files Browse the repository at this point in the history
  • Loading branch information
Elblinator authored Sep 16, 2024
1 parent 55077a7 commit c4bf57c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit c4bf57c

Please sign in to comment.