actual icon indicating copy to clipboard operation
actual copied to clipboard

Fix mobile transaction form requires additional click to unfocus amount input

Open minajevs opened this issue 6 months ago • 14 comments

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.

minajevs avatar Aug 16 '24 07:08 minajevs