changeset 2734:375c9dd935ad

import_review: disable sorting for header
author Thomas Junk <thomas.junk@intevation.de>
date Tue, 19 Mar 2019 16:01:58 +0100
parents 4ae3453fcf50
children 3c2ac140ad30
files client/src/components/importoverview/ImportOverview.vue
diffstat 1 files changed, 13 insertions(+), 7 deletions(-) [+]
line wrap: on
line diff
--- a/client/src/components/importoverview/ImportOverview.vue	Tue Mar 19 15:58:09 2019 +0100
+++ b/client/src/components/importoverview/ImportOverview.vue	Tue Mar 19 16:01:58 2019 +0100
@@ -29,36 +29,42 @@
       </div>
       <UITableHeader
         :columns="[
-          { id: 'id', title: 'Id', width: '79px' },
+          { id: 'id', title: 'Id', width: '79px', disableSorting: true },
           {
             id: 'kind',
             title: 'Kind',
-            width: '53px'
+            width: '53px',
+            disableSorting: true
           },
           {
             id: 'enqueued',
             title: 'Enqueued',
-            width: '138px'
+            width: '138px',
+            disableSorting: true
           },
           {
             id: 'user',
             title: 'User',
-            width: '105px'
+            width: '105px',
+            disableSorting: true
           },
           {
             id: 'signer',
             title: 'Signer',
-            width: '105px'
+            width: '105px',
+            disableSorting: true
           },
           {
             id: 'state',
             title: 'Status',
-            width: '72px'
+            width: '72px',
+            disableSorting: true
           },
           {
             id: 'warning',
             icon: 'exclamation-triangle',
-            width: '44px'
+            width: '44px',
+            disableSorting: true
           }
         ]"
         @sortingChanged="sortBy"