Merge pull request #3572 from mfilser/master

Lists, show also 0 cards at column description
This commit is contained in:
Lauri Ojansivu 2021-02-13 02:42:44 +02:00 committed by GitHub
commit 5723c0c96f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -82,7 +82,7 @@ BlazeComponent.extendComponent({
showCardsCountForList(count) {
const limit = this.limitToShowCardsCount();
return limit >= 0 && count > limit;
return limit >= 0 && count >= limit;
},
events() {