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>
|
||||
<Spacer grow />
|
||||
<Pagination
|
||||
v-if="result && result.count != 0"
|
||||
:paginate-by="paginateBy"
|
||||
v-if="result && result.count > paginateBy"
|
||||
:page="page"
|
||||
:pages="Math.ceil((result?.results.length || 0)/paginateBy)"
|
||||
/>
|
||||
|
|
Loading…
Reference in New Issue