fix infinite scrolling bug (#851)

This commit is contained in:
Echo 2026-01-25 23:49:17 -05:00 committed by GitHub
parent 133f85d3a1
commit 2e464570d0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -53,7 +53,7 @@ export default class extends Controller {
}
hasMore() {
return this.pageValue * 100 < this.totalValue
return (this.pageValue - 1) * 100 < this.totalValue
}
skeleton() {