Browse Source

Fix: lists filter didn't get added into filter active checklist

Sam X. Chen 5 năm trước cách đây
mục cha
commit
b26504f414
1 tập tin đã thay đổi với 3 bổ sung1 xóa
  1. 3 1
      client/lib/filter.js

+ 3 - 1
client/lib/filter.js

@@ -477,7 +477,9 @@ Filter = {
     return (
       _.any(this._fields, fieldName => {
         return this[fieldName]._isActive();
-      }) || this.advanced._isActive()
+      }) ||
+      this.advanced._isActive() ||
+      this.lists._isActive()
     );
   },