mirror of
https://github.com/formbricks/formbricks.git
synced 2026-02-04 10:30:00 -06:00
fix: openText issue (#1579)
This commit is contained in:
committed by
GitHub
parent
3a9ca829cc
commit
66cfbebe74
@@ -66,7 +66,7 @@ export default function OpenTextQuestion({
|
||||
id={question.id}
|
||||
placeholder={question.placeholder}
|
||||
required={question.required}
|
||||
value={value as string}
|
||||
value={value ? (value as string) : ""}
|
||||
type={question.inputType}
|
||||
onInput={(e) => handleInputChange(e.currentTarget.value)}
|
||||
autoFocus={autoFocus}
|
||||
|
||||
Reference in New Issue
Block a user