()
| 28 | } |
| 29 | |
| 30 | createFilterString() { |
| 31 | let filterString = ''; |
| 32 | for (const key in this.filtersForApply) { |
| 33 | if (this.filtersForApply[key] !== 0) { |
| 34 | filterString += `${key}(${this.filtersForApply[key]}%) `; |
| 35 | } |
| 36 | } |
| 37 | return filterString; |
| 38 | } |
| 39 | |
| 40 | getFilters() { |
| 41 | return this.filters.map((f)=>{ |