diff client/src/components/importoverview/LogEntry.vue @ 2597:02d5de05291f

overview2 WIP
author Thomas Junk <thomas.junk@intevation.de>
date Tue, 12 Mar 2019 12:25:41 +0100
parents ecec6d5aae00
children 61aba7e78d3a
line wrap: on
line diff
--- a/client/src/components/importoverview/LogEntry.vue	Tue Mar 12 12:07:02 2019 +0100
+++ b/client/src/components/importoverview/LogEntry.vue	Tue Mar 12 12:25:41 2019 +0100
@@ -65,7 +65,7 @@
       </div>
     </div>
     <div class="ml-1 d-flex flex-row">
-      <LogDetail entry="entry" v-if="show === entry.id"></LogDetail>
+      <LogDetail :entry="entry" v-if="show === entry.id"></LogDetail>
     </div>
   </div>
 </template>
@@ -104,6 +104,8 @@
       const { id } = this.entry;
       if (id === this.show) {
         this.$store.commit("imports/hideDetails");
+        this.$store.commit("imports/hideAdditionalInfo");
+        this.$store.commit("imports/hideAdditionalLogs");
       } else {
         this.$store.commit("imports/showDetailsFor", id);
       }