Using the new workflow I get phantom form submissions

I’ve attached a work flow to the change action of a select.
Now as soon as that work flow executes the form is submitted as well as shown in this video

How can I fix this?

I’m from mobile but it looks like the rest api request action is in a workflow triggered “on click” so it will execute every time the form element gets a click event.
Your selector is contained by the form element so it will propagate every click to the form itself, that’s why the workflow executes.

Try changing the trigger of the workflow to “on submit”.

1 Like

Yep using on submit fixed the issue

1 Like

Wonderful! :slight_smile: