Blazorise
Blazorise copied to clipboard
[Bug]: Validation on RadioGroup is not red
Blazorise Version
1.6
What Blazorise provider are you running on?
FluentUI2
Link to minimal reproduction or a simple code snippet
<Field> <FieldLabel>Test</FieldLabel> <FieldBody> <Validation Validator="CustomValidationRule.IsNoChecked"> <RadioGroup TValue="bool?" Name="IsChanged" @bind-CheckedValue="@IsChanged"> <ChildContent> <Radio TValue="bool?" Value="true">Yes</Radio> <Radio TValue="bool?" Value="false">No</Radio> </ChildContent> <Feedback> <ValidationError>@Translate("IsChanged value is not valid")</ValidationError> </Feedback> </RadioGroup> </Validation> </FieldBody> </Field>
Steps to reproduce
What is expected?
color of message should be red
What is actually happening?
color is black
What browsers do you see the problem on?
No response
Any additional comments?
No response