summaryrefslogtreecommitdiffstats
path: root/client/components/lists/listBody.js
diff options
context:
space:
mode:
authorLauri Ojansivu <x@xet7.org>2019-02-01 16:05:46 +0200
committerLauri Ojansivu <x@xet7.org>2019-02-01 16:05:46 +0200
commit4fc96904d6f6f372ebc0b7b409cb8366cc181d0c (patch)
tree0db20b2fb43b1367a7d0d0f62ccb6d5f29774ea5 /client/components/lists/listBody.js
parent30d082e709cbeded24156436b5bc66dfba53d754 (diff)
parent66bc1f28dd4395c1c2b4434520923edfa54d4eed (diff)
downloadwekan-4fc96904d6f6f372ebc0b7b409cb8366cc181d0c.tar.gz
wekan-4fc96904d6f6f372ebc0b7b409cb8366cc181d0c.tar.bz2
wekan-4fc96904d6f6f372ebc0b7b409cb8366cc181d0c.zip
Merge branch 'infinite-scrolling' of https://github.com/bentiss/wekan into bentiss-infinite-scrolling
Diffstat (limited to 'client/components/lists/listBody.js')
-rw-r--r--client/components/lists/listBody.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/components/lists/listBody.js b/client/components/lists/listBody.js
index 501459d9..fdea3bae 100644
--- a/client/components/lists/listBody.js
+++ b/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);
}