Browse Source

Fix info text

pull/19470/head
Salih 2 years ago
parent
commit
ac5b1a8d5d
  1. 2
      framework/src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/TagHelpers/Form/AbpInputTagHelperService.cs

2
framework/src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/TagHelpers/Form/AbpInputTagHelperService.cs

@ -111,7 +111,7 @@ public class AbpInputTagHelperService : AbpTagHelperService<AbpInputTagHelper>
inputHtml + label :
label + inputHtml;
return innerContent + infoHtml + validation;
return innerContent + validation + infoHtml;
}
protected virtual string SurroundInnerHtmlAndGet(TagHelperContext context, TagHelperOutput output, string innerHtml, bool isCheckbox)

Loading…
Cancel
Save