diff --git a/client/src/app/site/motions/components/motion-export-dialog/motion-export-dialog.component.html b/client/src/app/site/motions/components/motion-export-dialog/motion-export-dialog.component.html index 24bf442c1..e9666371e 100644 --- a/client/src/app/site/motions/components/motion-export-dialog/motion-export-dialog.component.html +++ b/client/src/app/site/motions/components/motion-export-dialog/motion-export-dialog.component.html @@ -49,6 +49,7 @@ State Recommendation Category + Tags Origin Motion block @@ -59,11 +60,7 @@

Comments

- + {{ comment.name }} diff --git a/client/src/app/site/motions/components/motion-export-dialog/motion-export-dialog.component.ts b/client/src/app/site/motions/components/motion-export-dialog/motion-export-dialog.component.ts index c10e914d7..81692a401 100644 --- a/client/src/app/site/motions/components/motion-export-dialog/motion-export-dialog.component.ts +++ b/client/src/app/site/motions/components/motion-export-dialog/motion-export-dialog.component.ts @@ -51,6 +51,7 @@ export class MotionExportDialogComponent implements OnInit { 'recommendation', 'category', 'origin', + 'tags', 'block', 'polls', 'id' diff --git a/client/src/app/site/motions/components/motion-list/motion-list.component.ts b/client/src/app/site/motions/components/motion-list/motion-list.component.ts index 1054452ff..f62e35d49 100644 --- a/client/src/app/site/motions/components/motion-list/motion-list.component.ts +++ b/client/src/app/site/motions/components/motion-list/motion-list.component.ts @@ -198,7 +198,7 @@ export class MotionListComponent extends ListViewBaseComponent { + return tag; + }) + .join(', '); + + metaTableBody.push([ + { + text: `${this.translate.instant('Tags')}:`, + style: 'boldText' + }, + { + text: tags + } + ]); + } + // motion block if (motion.motion_block && (!infoToExport || infoToExport.includes('block'))) { metaTableBody.push([