소스 검색

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