comparison 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
comparison
equal deleted inserted replaced
4773:af83ff003ebf 4774:1fd771b08ced
82 { id: 'enqueued', title: `${enqueuedLabel}`, width: '138px' }, 82 { id: 'enqueued', title: `${enqueuedLabel}`, width: '138px' },
83 { id: 'user', title: `${ownerLabel}`, width: '80px' }, 83 { id: 'user', title: `${ownerLabel}`, width: '80px' },
84 { id: 'country', title: `${countryLabel}`, width: '55px' }, 84 { id: 'country', title: `${countryLabel}`, width: '55px' },
85 { id: 'signer', title: `${signerLabel}`, width: '80px' }, 85 { id: 'signer', title: `${signerLabel}`, width: '80px' },
86 { id: 'state', title: `${statusLabel}`, width: '72px' }, 86 { id: 'state', title: `${statusLabel}`, width: '72px' },
87 { id: 'changed', title: `${changedLabel}`, width: '138px' },
87 { id: 'warnings', icon: 'exclamation-triangle', width: '44px' } 88 { id: 'warnings', icon: 'exclamation-triangle', width: '44px' }
88 ]" 89 ]"
89 /> 90 />
90 <!-- 91 <!--
91 For server-side sorting, etc simply don't use the sortTable filter. 92 For server-side sorting, etc simply don't use the sortTable filter.
187 kindLabel() { 188 kindLabel() {
188 return this.$gettext("Kind"); 189 return this.$gettext("Kind");
189 }, 190 },
190 enqueuedLabel() { 191 enqueuedLabel() {
191 return this.$gettext("Enqueued"); 192 return this.$gettext("Enqueued");
193 },
194 changedLabel() {
195 return this.$gettext("Changed");
192 }, 196 },
193 ownerLabel() { 197 ownerLabel() {
194 return this.$gettext("Owner"); 198 return this.$gettext("Owner");
195 }, 199 },
196 signerLabel() { 200 signerLabel() {