Skip to content
This repository has been archived by the owner on Aug 2, 2022. It is now read-only.

Commit

Permalink
Fixes values to make it consistent
Browse files Browse the repository at this point in the history
  • Loading branch information
mihirsoni committed May 7, 2019
1 parent 06ed5aa commit d3c5993
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,8 @@ export const OPERATORS_MAP = {
IS_NOT_NULL: 'is_not_null',
IS_GREATER: 'is_greater',
IS_GREATER_EQUAL: 'is_greater_equal',
IS_LESS: 'is_lesser',
IS_LESS_EQUAL: 'is_lesser_equal',
IS_LESS_EQUAL: 'is_lesser_equal',
IS_LESS: 'is_less',
IS_LESS_EQUAL: 'is_less_equal',
STARTS_WITH: 'starts_with',
ENDS_WITH: 'ends_with',
CONTAINS: 'contains',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,11 @@ describe('whereHelpers', () => {
},
{
text: 'is less than',
value: 'is_lesser',
value: 'is_less',
},
{
text: 'is less than equal',
value: 'is_lesser_equal',
value: 'is_less_equal',
},
{
text: 'is in range',
Expand Down

0 comments on commit d3c5993

Please sign in to comment.