diff client/src/components/importoverview/ImportOverview.vue @ 4774:1fd771b08ced

import_overview: added 'changed' column
author Thomas Junk <thomas.junk@intevation.de>
date Mon, 21 Oct 2019 12:35:46 +0200
parents 415c1993c7fe
children d6d73ca5496a
line wrap: on
line diff
--- a/client/src/components/importoverview/ImportOverview.vue	Mon Oct 21 11:59:14 2019 +0200
+++ b/client/src/components/importoverview/ImportOverview.vue	Mon Oct 21 12:35:46 2019 +0200
@@ -84,6 +84,7 @@
           { id: 'country', title: `${countryLabel}`, width: '55px' },
           { id: 'signer', title: `${signerLabel}`, width: '80px' },
           { id: 'state', title: `${statusLabel}`, width: '72px' },
+          { id: 'changed', title: `${changedLabel}`, width: '138px' },
           { id: 'warnings', icon: 'exclamation-triangle', width: '44px' }
         ]"
       />
@@ -190,6 +191,9 @@
     enqueuedLabel() {
       return this.$gettext("Enqueued");
     },
+    changedLabel() {
+      return this.$gettext("Changed");
+    },
     ownerLabel() {
       return this.$gettext("Owner");
     },