Skip to content

Commit

Permalink
Fixes issue #159, missing comma
Browse files Browse the repository at this point in the history
  • Loading branch information
peter-murray committed Jan 7, 2020
1 parent 6dca068 commit ec08e91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/model/rules/conditions/operators/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const Equals = new RuleConditionOperator('eq', ['=', '==', 'equals', '==='])
, In = new RuleConditionOperator('in')
, NotIn = new RuleConditionOperator('not in')
, LessThan = new RuleConditionOperator('lt', ['<'])
, GreaterThan = new RuleConditionOperator('gt' ['>'])
, GreaterThan = new RuleConditionOperator('gt', ['>'])
;

module.exports.getOperator = function(value) {
Expand Down

0 comments on commit ec08e91

Please sign in to comment.