Skip to content

Commit

Permalink
New comparators (#42)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jleagle committed Jun 25, 2020
1 parent 1c38897 commit a0f56d7
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions assets_src/assets/js/ContentElements/QueryBuilder.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@
QueryBuilderConstants.COMPARATOR_NOT_EQUALS_INSENSITIVE = 'neqi';
QueryBuilderConstants.COMPARATOR_IN = 'in';
QueryBuilderConstants.COMPARATOR_NOT_IN = 'nin';
QueryBuilderConstants.COMPARATOR_CONTAINS = 'contains';
QueryBuilderConstants.COMPARATOR_DOES_NOT_CONTAIN = 'dncontain';
QueryBuilderConstants.COMPARATOR_GREATER = 'gt';
QueryBuilderConstants.COMPARATOR_GREATER_EQUAL = 'gte';
QueryBuilderConstants.COMPARATOR_LESS = 'lt';
Expand Down Expand Up @@ -469,6 +471,8 @@
this.setComparatorName(QueryBuilderConstants.COMPARATOR_NOT_EQUALS, 'Does Not Equal');
this.setComparatorName(QueryBuilderConstants.COMPARATOR_IN, 'In');
this.setComparatorName(QueryBuilderConstants.COMPARATOR_NOT_IN, 'Not In');
this.setComparatorName(QueryBuilderConstants.COMPARATOR_CONTAINS, 'Contains');
this.setComparatorName(QueryBuilderConstants.COMPARATOR_DOES_NOT_CONTAIN, 'Does Not Contain');
this.setComparatorName(QueryBuilderConstants.COMPARATOR_GREATER, 'Greater Than');
this.setComparatorName(QueryBuilderConstants.COMPARATOR_GREATER_EQUAL, 'Greater Than or Equal to');
this.setComparatorName(QueryBuilderConstants.COMPARATOR_LESS, 'Less Than');
Expand Down

0 comments on commit a0f56d7

Please sign in to comment.