There was an error while loading. Please reload this page.
1 parent c59d9e9 commit df27bb1Copy full SHA for df27bb1
1 file changed
frontend/web/components/segments/Rule/Rule.tsx
@@ -69,7 +69,10 @@ const Rule: React.FC<RuleProps> = ({
69
)
70
const newOperator = operators.find((op) => op.value === operatorValue)
71
72
- const updates: Partial<SegmentCondition> = { operator: operatorValue }
+ // Split the append part of the operator as not handled by backend
73
+ const updates: Partial<SegmentCondition> = {
74
+ operator: operatorValue?.split(':')[0],
75
+ }
76
77
if (newOperator?.hideValue) {
78
updates.value = null
0 commit comments