mirror of
https://github.com/jellyfin/jellyfin-vue.git
synced 2025-03-04 11:47:34 +00:00
fix(library): adjust number of items in skeleton loader
Sets the number of skeleton cards to the smallest common multiple of all the breakpoint values, so that every size has full rows of cards.
This commit is contained in:
parent
8dee120ce4
commit
d305e431a1
@ -2,7 +2,7 @@
|
||||
<v-container>
|
||||
<v-row v-if="!loaded">
|
||||
<v-col cols="12" class="card-grid-container">
|
||||
<skeleton-card v-for="n in 20" :key="n" />
|
||||
<skeleton-card v-for="n in 24" :key="n" />
|
||||
</v-col>
|
||||
</v-row>
|
||||
<v-row v-if="items.length">
|
||||
|
Loading…
x
Reference in New Issue
Block a user