mirror of
https://github.com/System-End/hackatime.git
synced 2026-04-20 00:35:22 +00:00
fix infinite scrolling bug (#851)
This commit is contained in:
parent
133f85d3a1
commit
2e464570d0
1 changed files with 1 additions and 1 deletions
|
|
@ -53,7 +53,7 @@ export default class extends Controller {
|
|||
}
|
||||
|
||||
hasMore() {
|
||||
return this.pageValue * 100 < this.totalValue
|
||||
return (this.pageValue - 1) * 100 < this.totalValue
|
||||
}
|
||||
|
||||
skeleton() {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue