changeset 4500:e0e9cd86ec04

import_overview: add country column to csv export
author Thomas Junk <thomas.junk@intevation.de>
date Mon, 30 Sep 2019 15:58:32 +0200
parents df91a747872c
children 8a6c410f6f03
files client/src/components/importoverview/ImportOverview.vue
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/client/src/components/importoverview/ImportOverview.vue	Mon Sep 30 15:43:21 2019 +0200
+++ b/client/src/components/importoverview/ImportOverview.vue	Mon Sep 30 15:58:32 2019 +0200
@@ -263,7 +263,7 @@
                         .map(el => {
                           return ` ${el.id}, ${el.kind}, ${
                             el.enqueued
-                          }, ${el.user || " "}, ${el.country ||
+                          }, ${el.user || " "}, ${this.userCountries[el.user] ||
                             " "}, ${el.signer || " "}, ${el.state ||
                             " "}, ${el.warnings || " "}`;
                         })