Skip to content

Commit 77a7d09

Browse files
authored
fix: [WOAUILIB-3867] TextField default value (#2830)
1 parent 6eb8f61 commit 77a7d09

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/textField/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,8 +178,8 @@ const TextField = (props: InternalTextFieldProps) => {
178178
)}
179179
<Input
180180
placeholderTextColor={hidePlaceholder ? 'transparent' : placeholderTextColor}
181-
value={fieldState.value}
182181
{...others}
182+
value={fieldState.value}
183183
readonly={readonly}
184184
style={inputStyle}
185185
onFocus={onFocus}

0 commit comments

Comments
 (0)