mirror of
https://github.com/gotson/komga.git
synced 2026-04-22 06:50:51 +02:00
fix(webui): flickering on duplicate pages views
This commit is contained in:
parent
523151ac7d
commit
723d390784
2 changed files with 4 additions and 4 deletions
|
|
@ -57,7 +57,7 @@
|
|||
icon-color="success"
|
||||
/>
|
||||
|
||||
<v-row v-else>
|
||||
<v-row v-if="totalPages > 0">
|
||||
<v-slide-x-transition
|
||||
v-for="(element, i) in elements"
|
||||
:key="i"
|
||||
|
|
@ -135,7 +135,7 @@ export default Vue.extend({
|
|||
elements: [] as PageHashKnownDto[],
|
||||
totalElements: 0,
|
||||
page: 1,
|
||||
totalPages: 0,
|
||||
totalPages: undefined,
|
||||
sortActive: {key: 'deleteSize', order: 'desc'} as SortActive,
|
||||
filterActive: [PageHashAction.DELETE_AUTO, PageHashAction.DELETE_MANUAL],
|
||||
dialogImage: false,
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@
|
|||
icon-color="success"
|
||||
/>
|
||||
|
||||
<template v-else>
|
||||
<template v-if="totalPages > 0">
|
||||
<v-row align="center">
|
||||
<v-col cols="auto">
|
||||
<v-pagination
|
||||
|
|
@ -163,7 +163,7 @@ export default Vue.extend({
|
|||
hiddenElements: [] as PageHashUnknownDto[],
|
||||
totalElements: 0,
|
||||
page: 1,
|
||||
totalPages: 0,
|
||||
totalPages: undefined,
|
||||
sortActive: {key: 'totalSize', order: 'desc'} as SortActive,
|
||||
dialogImage: false,
|
||||
dialogMatches: false,
|
||||
|
|
|
|||
Loading…
Reference in a new issue