feat(webui): Duplicate pagination links at bottom of content lists

This commit is contained in:
Ben Kuskopf 2021-02-24 12:28:20 +10:00 committed by GitHub
parent b76907fe4b
commit 22cdd28f93
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 26 additions and 0 deletions

View file

@ -33,6 +33,12 @@
:edit-function="editSingleCollection"
/>
<v-pagination
v-if="totalPages > 1"
v-model="page"
:total-visible="paginationVisible"
:length="totalPages"
/>
</v-container>
</div>

View file

@ -79,6 +79,13 @@
:selected.sync="selectedSeries"
:edit-function="editSingleSeries"
/>
<v-pagination
v-if="totalPages > 1"
v-model="page"
:total-visible="paginationVisible"
:length="totalPages"
/>
</template>
</v-container>

View file

@ -33,6 +33,12 @@
:edit-function="editSingle"
/>
<v-pagination
v-if="totalPages > 1"
v-model="page"
:total-visible="paginationVisible"
:length="totalPages"
/>
</v-container>
</div>

View file

@ -219,6 +219,13 @@
:selected.sync="selectedBooks"
:edit-function="editSingleBook"
/>
<v-pagination
v-if="totalPages > 1"
v-model="page"
:total-visible="paginationVisible"
:length="totalPages"
/>
</template>
</v-container>