Skip to content

Commit

Permalink
fix(table): fix bad copy paste (#5067)
Browse files Browse the repository at this point in the history
Co-authored-by: Jacob Müller <jacob.mueller.elz@gmail.com>
  • Loading branch information
noobling and jacobmllr95 authored Apr 2, 2020
1 parent dcda1b7 commit 874dca2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/table/helpers/mixin-items.js
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ export default {
sortBy: this.localSortBy,
sortDesc: this.localSortDesc,
perPage: Math.max(toInteger(this.perPage, 0), 0),
currentPage: Math.max(toInteger(this.perPage, 0), 1),
currentPage: Math.max(toInteger(this.currentPage, 0), 1),
apiUrl: this.apiUrl
}
}
Expand Down

0 comments on commit 874dca2

Please sign in to comment.