Closed felipesilvati closed 2 years ago
I'm currently working on a form that looks like this:
<Form.Item rules={myRules} hasFeedback> <ConfigProvider locale={en}> <CountryPhoneInput /> </ConfigProvider> </Form.Item>
But when the user selects the country, I already get a validation error on both <Select /> and <Input /> elements, like this:
<Select />
<Input />
I wonder if there's a way to get a separate validation status like this:
Thanks!
Thanks for your reporting! I am wondering if select component need to be validated. What about just hide ant design's built-in error icon in this case?🤔
Fair enough, that should do it for now! Thanks
I'm currently working on a form that looks like this:
But when the user selects the country, I already get a validation error on both
<Select />
and<Input />
elements, like this:I wonder if there's a way to get a separate validation status like this:
Thanks!