chore: cleanup computed property
Some checks reported errors
continuous-integration/drone/pr Build was killed

This commit is contained in:
kolaente 2021-10-16 14:46:01 +02:00
parent 4ec79f7d7e
commit 2f73ed06b7
Signed by: konrad
GPG Key ID: F40E70337AB24C9B

View File

@ -100,9 +100,7 @@ export default {
computed: {
pages() {
const pages = createPagination(this.totalPages, this.currentPage)
console.log(pages, this.totalPages, this.currentPage)
return pages
return createPagination(this.totalPages, this.currentPage)
},
},