2
0
Эх сурвалжийг харах

Merge pull request #3572 from mfilser/master

Lists, show also 0 cards at column description
Lauri Ojansivu 4 жил өмнө
parent
commit
5723c0c96f

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

@@ -82,7 +82,7 @@ BlazeComponent.extendComponent({
 
   showCardsCountForList(count) {
     const limit = this.limitToShowCardsCount();
-    return limit >= 0 && count > limit;
+    return limit >= 0 && count >= limit;
   },
 
   events() {