Problem with conditional dynamic event

Thanks again, I haven’t tried this but it could make things unnecessarily complicated. I would first like to confirm that it’s a bug.

To give an example of the sort of thing I mean. If the status has a certain value, I might want to display a modal, and set an ID to populate the modal (two actions). If the status has different value, I might want to display a different modal and again set an ID (also two actions). I think this should work:

dmx-on:click="theCondition? defaultAction1() ; defaultAction2() : alternativeAction1() ; alternativeAction2()"

It does, as long as there is only a single action in the first part (the default event).