Skip to content

Commit 646bf8b

Browse files
committed
Correct page total
1 parent ee7f760 commit 646bf8b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/Overview/index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ export default {
135135
return this.result.timeline.length
136136
},
137137
totalPage() {
138-
return this.totalDaily / this.perPage
138+
return Math.ceil(this.totalDaily / this.perPage)
139139
}
140140
},
141141
data() {

0 commit comments

Comments
 (0)