# HG changeset patch # User Markus Kottlaender # Date 1560935603 -7200 # Node ID 982816fca381508986f3f5d5fd2b392dd0ab1c45 # Parent 5754793ff9b02ba6d2f61f375fe4276d1cc69dfb client: keep components in contextboxx alive diff -r 5754793ff9b0 -r 982816fca381 client/src/components/Contextbox.vue --- a/client/src/components/Contextbox.vue Wed Jun 19 08:53:48 2019 +0200 +++ b/client/src/components/Contextbox.vue Wed Jun 19 11:13:23 2019 +0200 @@ -1,11 +1,13 @@ diff -r 5754793ff9b0 -r 982816fca381 client/src/components/importoverview/ImportOverview.vue --- a/client/src/components/importoverview/ImportOverview.vue Wed Jun 19 08:53:48 2019 +0200 +++ b/client/src/components/importoverview/ImportOverview.vue Wed Jun 19 11:13:23 2019 +0200 @@ -447,7 +447,6 @@ }, mounted() { this.loadUpdatedLogs(); - this.selectedInterval = this.$options.LAST_HOUR; this.$store.dispatch("usermanagement/loadUsers").catch(error => { const { status, data } = error.response; displayError({ @@ -462,6 +461,9 @@ this.$store.commit("application/searchQuery", ""); this.loadLogs(); } + }, + activated() { + this.loadUpdatedLogs(); } };