Skip to content

Commit 538aad1

Browse files
authored
Merge pull request #427 from ownego/update/remove-fallback-textfield-input-value
2 parents 801f49f + 0b68bc7 commit 538aad1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/TextField/TextField.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -459,7 +459,7 @@ const input = () => h(props.multiline ? 'textarea' : 'input', {
459459
readOnly: props.readOnly,
460460
role: props.role,
461461
autoFocus: props.autoFocus ? props.autoFocus : undefined,
462-
value: normalizedValue.value || props.value,
462+
value: normalizedValue.value,
463463
placeholder: props.placeholder,
464464
style: style.value,
465465
autoComplete: props.autoComplete,

0 commit comments

Comments
 (0)