Browse Source

Lists, show also 0 cards at column description

Martin Filser 4 năm trước cách đây
mục cha
commit
2830bdc075
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  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() {