We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cddaf8c commit 3a7cb25Copy full SHA for 3a7cb25
components/input/Input.tsx
@@ -309,7 +309,7 @@ export default defineComponent({
309
if (!inputProps.autofocus) {
310
delete inputProps.autofocus;
311
}
312
- const inputNode = <input {...inputProps} />;
+ const inputNode = <input {...omit(inputProps, ['size'])} />;
313
return withDirectives(inputNode as VNode, [[antInputDirective]]);
314
};
315
0 commit comments