Skip to content

Commit f75a56e

Browse files
fix: check for unsupoortedOperators
1 parent cd09363 commit f75a56e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

js/Conditions/ConditionsControl.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ const ConditionsControl = ({ conditions, setConditions }) => {
149149
);
150150
const operators = Object.keys(
151151
window?.feedzyConditionsData?.operators
152-
).filter((key) => !field.unsupportedOperators?.includes(key));
152+
).filter((key) => !field?.unsupportedOperators?.includes(key));
153153

154154
return (
155155
<PanelTab

0 commit comments

Comments
 (0)