Merge pull request #5425 from tsiegleauq/motion-csv-impexp

Export motion id latest
This commit is contained in:
Emanuel Schütze 2020-06-16 22:17:04 +02:00 committed by GitHub
commit b43151fd59
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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'
];
/**