Skip to content

Commit f7d8755

Browse files
committed
#RI-5874 - fix input
1 parent 98d72c6 commit f7d8755

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

redisinsight/ui/src/pages/home/components/form/DatabaseForm.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ const DatabaseForm = (props: Props) => {
106106
value={formik.values.host ?? ''}
107107
onChange={(e: ChangeEvent<HTMLInputElement>) => {
108108
formik.setFieldValue(
109-
e.target.name,
109+
'host',
110110
validateField(e.target.value.trim())
111111
)
112112
}}

0 commit comments

Comments
 (0)