fix: create all filters
This commit is contained in:
parent
bcf410aef2
commit
644adb9202
1 changed files with 1 additions and 1 deletions
|
@ -78,7 +78,7 @@ const FilterList = {
|
|||
},
|
||||
|
||||
toString() {
|
||||
return `${Object.values(this).join(",")}`;
|
||||
return this.names.map(m => (this as any)[m]).join(",");
|
||||
},
|
||||
|
||||
create(filter?: FiltersName[]): string {
|
||||
|
|
Loading…
Reference in a new issue