fix(style): [WIP] pagination in artist page
This commit is contained in:
parent
b552ca180f
commit
4428873583
|
@ -236,8 +236,7 @@ const paginateOptions = computed(() => sortedUniq([12, 30, 50, paginateBy.value]
|
||||||
</Layout>
|
</Layout>
|
||||||
<Spacer grow />
|
<Spacer grow />
|
||||||
<Pagination
|
<Pagination
|
||||||
v-if="result && result.count != 0"
|
v-if="result && result.count > paginateBy"
|
||||||
:paginate-by="paginateBy"
|
|
||||||
:page="page"
|
:page="page"
|
||||||
:pages="Math.ceil((result?.results.length || 0)/paginateBy)"
|
:pages="Math.ceil((result?.results.length || 0)/paginateBy)"
|
||||||
/>
|
/>
|
||||||
|
|
Loading…
Reference in New Issue