From fbbc4389fb5e31d50f62fe80f0a67fb3e384f2cc Mon Sep 17 00:00:00 2001 From: Sean Date: Tue, 16 Jun 2020 17:33:13 +0200 Subject: [PATCH] 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 --- client/src/app/site/motions/motions.constants.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/client/src/app/site/motions/motions.constants.ts b/client/src/app/site/motions/motions.constants.ts index 5f3f9f18b..fd84c0b65 100644 --- a/client/src/app/site/motions/motions.constants.ts +++ b/client/src/app/site/motions/motions.constants.ts @@ -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' ]; /**