mirror of
https://github.com/wekan/wekan.git
synced 2025-04-22 21:17:18 -04:00
Fix: lists filter didn't get added into filter active checklist
This commit is contained in:
parent
e195c731de
commit
b26504f414
1 changed files with 3 additions and 1 deletions
|
@ -477,7 +477,9 @@ Filter = {
|
|||
return (
|
||||
_.any(this._fields, fieldName => {
|
||||
return this[fieldName]._isActive();
|
||||
}) || this.advanced._isActive()
|
||||
}) ||
|
||||
this.advanced._isActive() ||
|
||||
this.lists._isActive()
|
||||
);
|
||||
},
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue