availity-reactstrap-validation icon indicating copy to clipboard operation
availity-reactstrap-validation copied to clipboard

how to show html element to errorMessage

Open PradeepGorule14 opened this issue 4 years ago • 0 comments

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)} />

`

PradeepGorule14 avatar Aug 31 '21 06:08 PradeepGorule14