mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
bug fixes
This commit is contained in:
parent
4f5ca22363
commit
8af43bd788
@ -21,7 +21,7 @@
|
|||||||
export default {
|
export default {
|
||||||
name: 'PaginationButtons',
|
name: 'PaginationButtons',
|
||||||
props: {
|
props: {
|
||||||
totalRows: { type: Number, required: true },
|
totalRows: { required: true },
|
||||||
perPage: { type: Number, required: true },
|
perPage: { type: Number, required: true },
|
||||||
value: { type: Number, required: true },
|
value: { type: Number, required: true },
|
||||||
},
|
},
|
||||||
|
|||||||
@ -84,6 +84,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<pagination-buttons
|
<pagination-buttons
|
||||||
|
v-if="showPagination"
|
||||||
v-model="currentPage"
|
v-model="currentPage"
|
||||||
:per-page="pageSize"
|
:per-page="pageSize"
|
||||||
:total-rows="transactionCount"
|
:total-rows="transactionCount"
|
||||||
@ -130,6 +131,7 @@ export default {
|
|||||||
firstPage: this.currentPage,
|
firstPage: this.currentPage,
|
||||||
items: this.pageSize,
|
items: this.pageSize,
|
||||||
})
|
})
|
||||||
|
window.scrollTo(0, 0)
|
||||||
},
|
},
|
||||||
getProperties(givenType) {
|
getProperties(givenType) {
|
||||||
const type = iconsByType[givenType]
|
const type = iconsByType[givenType]
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user