diff --git a/lib/model/rules/conditions/operators/index.js b/lib/model/rules/conditions/operators/index.js index 9130c18..7d67717 100644 --- a/lib/model/rules/conditions/operators/index.js +++ b/lib/model/rules/conditions/operators/index.js @@ -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) {