Przeglądaj źródła

Lists, show also 0 cards at column description

Martin Filser 4 lat temu
rodzic
commit
2830bdc075
1 zmienionych plików z 1 dodań i 1 usunięć
  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() {