How to exclude areas within a container from executing an action?

Hi,

How do I exclude a div (with another action) within a div to be executed ?

Reason I ask: this is a card within in a list that has a main action (the whole card) and 2 specific actions on that card. Now when I press on the specific actions, I want the main action to be excluded. But how?

If this is for example an on click event workflow, use the “Stop propagation” workflow action at the top of your inner most workflows. This should prevent the click event from propagating to the parent.

1 Like

Thanks!!