Skip to content
Snippets Groups Projects
Commit afa4563e authored by syuilo's avatar syuilo
Browse files

Update paging.ts

parent 320b3d86
No related branches found
No related tags found
No related merge requests found
......@@ -117,7 +117,7 @@ export default (opts) => ({
this.items.unshift(item);
if (this.isScrollTop()) {
// オーバーフローしたら古い投稿は捨てる
// オーバーフローしたら古いアイテムは捨てる
if (this.items.length >= opts.displayLimit) {
this.items = this.items.slice(0, opts.displayLimit);
this.more = true;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment