fix(client): fix input component (#6679)

* fix(client): fix input component

* fix(client): remove useless definition
This commit is contained in:
Junyi 2025-04-16 12:33:46 +08:00 committed by GitHub
parent 63a842aab3
commit baec449c03
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -42,6 +42,8 @@ function InputInner(props: NocoBaseInputProps) {
return <AntdInput {...others} onChange={handleChange} />;
}
InputInner.Password = AntdInput.Password;
export const Input: ComposedInput = Object.assign(
connect(
InputInner,