Browse Source

Lists, show also 0 cards at column description

Martin Filser 4 years ago
parent
commit
2830bdc075
1 changed files with 1 additions and 1 deletions
  1. 1 1
      client/components/lists/listHeader.js

+ 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() {