( filterStringArray )
| 61 | } |
| 62 | |
| 63 | setFromStringArray ( filterStringArray ) { |
| 64 | filterStringArray.forEach( filterString => { |
| 65 | const { key, value } = this.getFilterNameAndValueFromString( filterString ) |
| 66 | |
| 67 | this.filters[ key ] = value |
| 68 | }) |
| 69 | } |
| 70 | |
| 71 | setFromString ( filterNameOrQueryValue ) { |
| 72 | const { |
no test coverage detected