You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if (!isset($filterContext['operator']) || !isset($filterContext['context'])) {
41
-
thrownewError("Operator must be !=or == to be used in ComponentData applicator. Context must be set. Provided values: " . print_r($filterContext, true));
52
+
thrownewError("Operator must be !=, !== or ==, === to be used in ComponentData applicator. Context must be set. Provided values: " . print_r($filterContext, true));
42
53
}
43
54
44
55
// Operator must be != or ==
45
-
if (!in_array($filterContext['operator'], ["!=", "=="])) {
46
-
thrownewError("Operator must be !=or == to be used in ComponentData applicator. Provided value: " . $filterContext['operator']);
56
+
if (!in_array($filterContext['operator'], ["!=", "==", "!==", "==="])) {
57
+
thrownewError("Operator must be !=, !== or ==, === to be used in ComponentData applicator. Provided value: " . $filterContext['operator']);
0 commit comments