It would be great to see a debounce feature added to the button options. I would like stop app users from being able to push a button repeatedly within a set amount of time.
Thanks!
It would be great to see a debounce feature added to the button options. I would like stop app users from being able to push a button repeatedly within a set amount of time.
Thanks!
Thanks for the suggestion @kellen.linse . We’ve been exploring several options here.
Quick usability test - Would you prefer a short debounce (200-500ms), or a way to disable the button altogether until its triggers have finished running?
Interested in Community POV here as well, and keeping an eye on upvotes.
Hi @OlgaStroilova, It’s better to disable the button until all triggers have finished executing.
@kellen.linse Currently, I’ve managed this by using a Boolean variable assigned to the button’s “Enabled state". I created a start trigger that sets the Boolean variable to “false” to disable the button, and an end trigger that sets it back to “true” to re-enable it. This workaround effectively prevents users from pressing the button repeatedly during processing.