summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVitalii Lysak <v.lysak@dunice.net>2022-08-15 10:51:31 +0300
committerVitalii Lysak <v.lysak@dunice.net>2022-08-15 10:51:31 +0300
commit2c69de603e88e93929240c8f7560aa4b4a1e0ded (patch)
treec3a9fd7458e29824494eac596df997b77ad8b677
parent7f97bbd82caf938c5a31fa80fbff16852b86dc85 (diff)
parent4691ec046b121c6b30c9392ecf429c913a0551d3 (diff)
downloadwebui-vue-2c69de603e88e93929240c8f7560aa4b4a1e0ded.tar.xz
Merge branch 'sila' of git.sila.ru:pub/openbmc/webui-vue into sila
-rw-r--r--src/App.vue2
-rw-r--r--src/layouts/_sila/AppLayout.vue2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/App.vue b/src/App.vue
index 9b51aa72..d2878946 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -1,6 +1,6 @@
<template>
<div id="app">
- <router-view :key="$route.fullPath" />
+ <router-view />
</div>
</template>
diff --git a/src/layouts/_sila/AppLayout.vue b/src/layouts/_sila/AppLayout.vue
index 1c9c39c7..65e1d5ec 100644
--- a/src/layouts/_sila/AppLayout.vue
+++ b/src/layouts/_sila/AppLayout.vue
@@ -8,7 +8,7 @@
/>
<app-navigation class="app-navigation" />
<page-container class="app-content">
- <router-view ref="routerView" :key="routerKey" />
+ <router-view ref="routerView" :key="$route.fullPath" />
<!-- Scroll to top button -->
<button-back-to-top />
</page-container>