From 614345ef33c76bdd793440e4547bd0086367195c Mon Sep 17 00:00:00 2001 From: Kiril Kartunov Date: Tue, 6 Oct 2020 14:13:33 +0300 Subject: [PATCH 1/5] Fix #5034 --- src/shared/components/GUIKit/TextInput/index.jsx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/shared/components/GUIKit/TextInput/index.jsx b/src/shared/components/GUIKit/TextInput/index.jsx index 6194c0d27e..a69881350c 100644 --- a/src/shared/components/GUIKit/TextInput/index.jsx +++ b/src/shared/components/GUIKit/TextInput/index.jsx @@ -35,6 +35,10 @@ function TextInput({ delayedOnChange(e.target.value, onChange); setVal(e.target.value); }} + onBlur={(e) => { + delayedOnChange(e.target.value, onChange); + setVal(e.target.value); + }} /> {label ? (