diff options
Diffstat (limited to 'packages/exchange-backoffice-ui/src/forms/InputLine.tsx')
-rw-r--r-- | packages/exchange-backoffice-ui/src/forms/InputLine.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/exchange-backoffice-ui/src/forms/InputLine.tsx b/packages/exchange-backoffice-ui/src/forms/InputLine.tsx index 0870e885a..2a5245ddf 100644 --- a/packages/exchange-backoffice-ui/src/forms/InputLine.tsx +++ b/packages/exchange-backoffice-ui/src/forms/InputLine.tsx @@ -243,7 +243,7 @@ export function InputLine<T>(props: { type: string } & UIFormProps<T>): VNode { onChange(fromString(e.currentTarget.value)); }} placeholder={placeholder ? placeholder : undefined} - value={toString(value)} + defaultValue={toString(value)} disabled={state.disabled} aria-invalid={showError} // aria-describedby="email-error" @@ -262,7 +262,7 @@ export function InputLine<T>(props: { type: string } & UIFormProps<T>): VNode { onChange(fromString(e.currentTarget.value)); }} placeholder={placeholder ? placeholder : undefined} - value={toString(value)} + defaultValue={toString(value)} disabled={state.disabled} aria-invalid={showError} // aria-describedby="email-error" |