瀏覽代碼

Merge branch 'infinite-scrolling' of https://github.com/bentiss/wekan into bentiss-infinite-scrolling

Lauri Ojansivu 6 年之前
父節點
當前提交
4fc96904d6
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      client/components/lists/listBody.js

+ 1 - 1
client/components/lists/listBody.js

@@ -92,7 +92,7 @@ BlazeComponent.extendComponent({
       // we need to increment the displayed card count to prevent the spinner
       // to appear
       const cardCount = this.data().cards(this.idOrNull(swimlaneId)).count();
-      if (pthis.cardlimit.get() < cardCount) {
+      if (this.cardlimit.get() < cardCount) {
         this.cardlimit.set(this.cardlimit.get() + InfiniteScrollIter);
       }