mirror of
https://github.com/wekan/wekan.git
synced 2025-12-16 15:30:13 +01:00
Settings, "Show cards count" now shows also 1 card
This commit is contained in:
parent
40907ef1d8
commit
8475201db8
3 changed files with 5 additions and 5 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