actual
actual copied to clipboard
Fix mobile transaction form requires additional click to unfocus amount input
Closes #3268
So the "bug" happened because setTimeout
in onBlur
handler messed up event-loop. The current edited field was reset on the next cycle, after onClick
handler of the next field was fired. Removing setTimeout
linearizes event-loop and current edited field is reset before onClick
is fired.