Remove unsupported operators by JSOnLogic (#5394)
Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>pull/5355/head^2
parent
bf68ec1ad5
commit
7625950950
|
@ -123,6 +123,13 @@ operators.between.label = "Between";
|
|||
delete operators.proximity;
|
||||
delete operators.is_null;
|
||||
delete operators.is_not_null;
|
||||
|
||||
/**
|
||||
* Not supported with JSONLogic. Implement them and add these back -> https://github.com/jwadhams/json-logic-js/issues/81
|
||||
*/
|
||||
delete operators.starts_with;
|
||||
delete operators.ends_with;
|
||||
|
||||
const config = {
|
||||
conjunctions: BasicConfig.conjunctions,
|
||||
operators,
|
||||
|
|
Loading…
Reference in New Issue