Commit 80ff6c3b8f8815d00e54c17512772f78c4cedfa4

Authored by zbeacon
Committed by Andrew Shvayka
1 parent 0b3f93c1

Fix for String filter operation name

... ... @@ -203,7 +203,7 @@ export enum StringOperation {
203 203 STARTS_WITH = 'STARTS_WITH',
204 204 ENDS_WITH = 'ENDS_WITH',
205 205 CONTAINS = 'CONTAINS',
206   - NOT_CONTAIN = 'NOT_CONTAIN'
  206 + NOT_CONTAINS = 'NOT_CONTAINS'
207 207 }
208 208
209 209 export const stringOperationTranslationMap = new Map<StringOperation, string>(
... ... @@ -213,7 +213,7 @@ export const stringOperationTranslationMap = new Map<StringOperation, string>(
213 213 [StringOperation.STARTS_WITH, 'filter.operation.starts-with'],
214 214 [StringOperation.ENDS_WITH, 'filter.operation.ends-with'],
215 215 [StringOperation.CONTAINS, 'filter.operation.contains'],
216   - [StringOperation.NOT_CONTAIN, 'filter.operation.not-contain']
  216 + [StringOperation.NOT_CONTAINS, 'filter.operation.not-contains']
217 217 ]
218 218 );
219 219
... ...
... ... @@ -1189,7 +1189,7 @@
1189 1189 "starts-with": "starts with",
1190 1190 "ends-with": "ends with",
1191 1191 "contains": "contains",
1192   - "not-contain": "not contain",
  1192 + "not-contains": "not contains",
1193 1193 "greater": "greater than",
1194 1194 "less": "less than",
1195 1195 "greater-or-equal": "greater or equal",
... ...