mirror of
https://github.com/gotson/komga.git
synced 2025-12-22 00:13:30 +01:00
fix(web reader): first/last display to full height in double pages mode
This commit is contained in:
parent
722773671f
commit
a7548e298a
1 changed files with 1 additions and 1 deletions
|
|
@ -35,7 +35,7 @@
|
|||
<div :class="`d-flex flex-row${rtl ? '-reverse' : ''} justify-center`">
|
||||
<v-img :src="getPageUrl(p)"
|
||||
:max-height="maxHeight"
|
||||
:max-width="$vuetify.breakpoint.width / (doublePages ? 2 : 1)"
|
||||
:max-width="$vuetify.breakpoint.width / (doublePages && p !== 1 && p !== pagesCount ? 2 : 1)"
|
||||
:contain="true"
|
||||
:eager="eagerLoad(p)"
|
||||
>
|
||||
|
|
|
|||
Loading…
Reference in a new issue