mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-24 18:36:48 +03:00
fix monitor list jumping to top on route change
This commit is contained in:
parent
3ad736692f
commit
2776f942ab
3 changed files with 6 additions and 5 deletions
|
@ -89,8 +89,9 @@ export default {
|
|||
|
||||
.list {
|
||||
&.scrollbar {
|
||||
height: calc(100vh - 20px);
|
||||
overflow-y: scroll;
|
||||
min-height: calc(100vh - 240px);
|
||||
max-height: calc(100vh - 20px);
|
||||
overflow-y: auto;
|
||||
position: sticky;
|
||||
top: 10px;
|
||||
}
|
||||
|
|
|
@ -40,8 +40,7 @@
|
|||
</header>
|
||||
|
||||
<main>
|
||||
<!-- Add :key to disable vue router re-use the same component -->
|
||||
<router-view v-if="$root.loggedIn" :key="$route.fullPath" />
|
||||
<router-view v-if="$root.loggedIn" />
|
||||
<Login v-if="! $root.loggedIn && $root.allowLoginDialog" />
|
||||
</main>
|
||||
|
||||
|
|
|
@ -9,7 +9,8 @@
|
|||
</div>
|
||||
|
||||
<div class="col-12 col-md-7 col-xl-8 mb-3">
|
||||
<router-view />
|
||||
<!-- Add :key to disable vue router re-use the same component -->
|
||||
<router-view :key="$route.fullPath" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
Loading…
Reference in a new issue