mirror of
https://github.com/wekan/wekan.git
synced 2026-01-31 13:45:17 +01:00
Merge pull request #3572 from mfilser/master
Lists, show also 0 cards at column description
This commit is contained in:
commit
5723c0c96f
1 changed files with 1 additions and 1 deletions
|
|
@ -82,7 +82,7 @@ BlazeComponent.extendComponent({
|
|||
|
||||
showCardsCountForList(count) {
|
||||
const limit = this.limitToShowCardsCount();
|
||||
return limit >= 0 && count > limit;
|
||||
return limit >= 0 && count >= limit;
|
||||
},
|
||||
|
||||
events() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue