Skip to content

Commit 874dca2

Browse files
fix(table): fix bad copy paste (#5067)
Co-authored-by: Jacob Müller <jacob.mueller.elz@gmail.com>
1 parent dcda1b7 commit 874dca2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/table/helpers/mixin-items.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ export default {
8585
sortBy: this.localSortBy,
8686
sortDesc: this.localSortDesc,
8787
perPage: Math.max(toInteger(this.perPage, 0), 0),
88-
currentPage: Math.max(toInteger(this.perPage, 0), 1),
88+
currentPage: Math.max(toInteger(this.currentPage, 0), 1),
8989
apiUrl: this.apiUrl
9090
}
9191
}

0 commit comments

Comments
 (0)