ant-design-blazor icon indicating copy to clipboard operation
ant-design-blazor copied to clipboard

HasFeedback icon vertically misaligned, and spins

Open michaelcsikos opened this issue 3 years ago • 0 comments

HasFeedback error icon moves down when the custom Text under the edit control appears, and the error icons spins:

Ant HasFeedback

Version 0.1.10

<FormItem Label          = "@(IsLabelVisible ? @Property.FriendlyName : null)"
          Required       = "@Required"
          HasFeedback
          ValidateStatus = "@ValidateStatus"
          @ref           = "_formItem">
    @EditControl
    <div>
        <Text Type = "danger"   >@Property.ErrorText</Text>
        <Text Type = "warning"  >@Property.WarningText</Text>
        <Text Type = "secondary">@Property.InformationText</Text>
    </div>
</FormItem>

michaelcsikos avatar May 09 '22 04:05 michaelcsikos