浏览代码

Lists, show also 0 cards at column description

Martin Filser 4 年之前
父节点
当前提交
2830bdc075
共有 1 个文件被更改,包括 1 次插入1 次删除
  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() {