Make filter condition human readable since they're just strings

This commit is contained in:
Andrew Kingston 2020-09-16 13:54:56 +01:00
parent fdca9240e9
commit 4fed6c05d3
1 changed files with 4 additions and 4 deletions

View File

@ -24,8 +24,8 @@ module.exports.getLogic = function(logicName) {
} }
module.exports.LogicConditions = [ module.exports.LogicConditions = [
"equals", "Equals",
"notEquals", "Not equals",
"greaterThan", "Greater than",
"lessThan", "Less than",
] ]