You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 21, 2023. It is now read-only.
i want show the anchor link when user reach the max limit but i dont how to show anchor tag in errorMessage
`
<AvField
name="Number of Edition"
label="Number of Edition"
type="number"
value={editions}
validate={{
required: {
value: true,
errorMessage: "This field is mandatory",
},
max: {
value: 1000,
errorMessage: Link
},
min: {
value: 1,
errorMessage: "Enter value between 1 to 1000",
},
pattern: {
value: "^[0-9]+$",
errorMessage: "Only integers are allowed",
},
}}
onChange={(e, v) => setEditions(v)}
/>
`
The text was updated successfully, but these errors were encountered: