I have several buttons in my canvas app that trigger different containers using UpdateContext. For example, I have a Reset button on my app that displays a "dialog" to the user. The OnSelect action for the reset button simply runs the following:
UpdateContext({varShowResetWarning: true});
The reset dialog is really a container whose Visibility property is set to varShowResetWarning.
What's been happening lately is the buttons don't work unless I go into each container and change the Visibility property in some way. For example, if I backspace the g in the variable and put it back in, the button will start working.
If I start a monitoring session, the button click is getting registered correctly as a UserAction and the result is Success. Looking at the formula, it's showing exactly what I'd expect:
btnReset.OnSelect
UpdateContext({varShowResetWarning: true});
I'm stumped. Any ideas?