In a Modify bot configuration, a condition like ```json "if": { "field": "^12\\.[34]" ``` does not match values like "12.3" while ```json "if": { "field": "^(12\\.[34])" ``` does. This looks like a bug with regex handling.
In a Modify bot configuration, a condition like
does not match values like "12.3" while
does.
This looks like a bug with regex handling.