You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Some buttons (eg Login, Run Action) in the current st2web allow for clicking them again sending duplicate requests which might not be desired. If the response time is high, this also leads to a bad UX.
A good way to handle it would be to handle the button click, disable the button, and show a loader/status bar/alert/text somewhere instead. Does require reviewing all buttons to properly assign them error and other help/status texts.
A simpler quick fix should be to just disable (all?) buttons that lead to synchronous responses (page change) while the response is pending.
The text was updated successfully, but these errors were encountered:
#977 fixes this for "Login" button on the homepage and "Re-run" button for action rerun. However, the "Run" button in actions page still has the same behavior and can be improved.
Some buttons (eg Login, Run Action) in the current st2web allow for clicking them again sending duplicate requests which might not be desired. If the response time is high, this also leads to a bad UX.
A good way to handle it would be to handle the button click, disable the button, and show a loader/status bar/alert/text somewhere instead. Does require reviewing all buttons to properly assign them error and other help/status texts.
A simpler quick fix should be to just disable (all?) buttons that lead to synchronous responses (page change) while the response is pending.
The text was updated successfully, but these errors were encountered: