diff client/src/components/importoverview/ImportOverview.vue @ 2874:b9a6abef9f1c

client: more unified table layout Expandable/collapsible rows are now also handled by the component
author Markus Kottlaender <markus@intevation.de>
date Mon, 01 Apr 2019 11:51:03 +0200
parents 4da07a11e6e1
children 84effca50751
line wrap: on
line diff
--- a/client/src/components/importoverview/ImportOverview.vue	Mon Apr 01 10:46:18 2019 +0200
+++ b/client/src/components/importoverview/ImportOverview.vue	Mon Apr 01 11:51:03 2019 +0200
@@ -96,9 +96,10 @@
       <UITableBody
         :data="filteredImports() | sortTable(sortColumn, sortDirection)"
         maxHeight="73vh"
-        v-slot="{ item: entry }"
       >
-        <LogEntry :entry="entry"></LogEntry>
+        <template v-slot:row="{ item: entry }">
+          <LogEntry :entry="entry"></LogEntry>
+        </template>
       </UITableBody>
     </div>
   </div>