We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8d3895b commit f3f8d15Copy full SHA for f3f8d15
packages/vuetify/src/components/VPagination/VPagination.ts
@@ -89,7 +89,7 @@ export default mixins(
89
items (): (string | number)[] {
90
const totalVisible = parseInt(this.totalVisible, 10)
91
92
- if (totalVisible === 0) {
+ if (totalVisible === 0 || isNaN(this.length) || this.length > Number.MAX_SAFE_INTEGER) {
93
return []
94
}
95
0 commit comments