mirror of
https://github.com/wekan/wekan.git
synced 2026-01-01 15:18:49 +01:00
feature implemented, known bugs fixed
This commit is contained in:
parent
c865bfe497
commit
214fe6a61f
6 changed files with 71 additions and 45 deletions
|
|
@ -102,7 +102,8 @@ BlazeComponent.extendComponent({
|
|||
|
||||
reachedWipLimit() {
|
||||
const list = Template.currentData();
|
||||
return list.wipLimit.enabled && list.wipLimit.value == list.cards().count();
|
||||
if( !list.getWipLimit() ) { return false; }
|
||||
return list.getWipLimit('enabled') && list.getWipLimit('value') === list.cards().count();
|
||||
},
|
||||
|
||||
events() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue