Skip to content

Commit 614345e

Browse files
committed
Fix #5034
1 parent bdfe08c commit 614345e

File tree

1 file changed

+4
-0
lines changed
  • src/shared/components/GUIKit/TextInput

1 file changed

+4
-0
lines changed

src/shared/components/GUIKit/TextInput/index.jsx

+4
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,10 @@ function TextInput({
3535
delayedOnChange(e.target.value, onChange);
3636
setVal(e.target.value);
3737
}}
38+
onBlur={(e) => {
39+
delayedOnChange(e.target.value, onChange);
40+
setVal(e.target.value);
41+
}}
3842
/>
3943
{label ? (
4044
<label htmlFor="textBoxInput">

0 commit comments

Comments
 (0)