Export motion id latest

Put the motion id to the end of all export used.
Solves the issue that users cannot re-import CSVs if they export them
with sequential numbers
This commit is contained in:
Sean 2020-06-16 17:33:13 +02:00 committed by Emanuel Schütze
parent bc1373b696
commit fbbc4389fb
1 changed files with 3 additions and 3 deletions

View File

@ -97,7 +97,6 @@ export enum MotionEditNotificationType {
* Defines the column order for csv/xlsx export/import of motions.
*/
export const motionImportExportHeaderOrder: string[] = [
'id',
'identifier',
'submitters',
'title',
@ -105,10 +104,11 @@ export const motionImportExportHeaderOrder: string[] = [
'reason',
'category',
'tags',
'motion_block',
'origin',
'recommendation',
'state',
'motion_block',
'origin'
'id'
];
/**