romanmg
11
Try using a custom state instead to manage the visibility. This way you don’t conflict with other visibility requirements.
For example, create a yes/no custom state on the reusable element itself called “show map details” (or whatever name you want). The default value is “yes”
When “group close” is clicked, set the state’s value to “no”.
Whatever workflow you have to show the contents should set the state’s value to “yes”.
Now, for “Group Person Map”:
- Make sure it’s hidden by default
- Modify your first condition so it says “when this group’s User is not empty AND ‘show map details’ is yes” > this element is visible
- Remove the second condition we tried from earlier troubleshooting (“e_person_map isn’t visible”).
Try that. So what’s happening is INSTEAD of the toggle action, you’re changing the a custom state’s value to yes or no. That yes or no will dictate the visibility property through the condition.