Skip to content

Commit

Permalink
Merge pull request #19470 from abpframework/issue-19071
Browse files Browse the repository at this point in the history
Fix info text
  • Loading branch information
oykuermann authored Apr 1, 2024
2 parents 884cfc5 + ac5b1a8 commit 2bed9f7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ protected virtual string GetContent(TagHelperContext context, TagHelperOutput ou
inputHtml + label :
label + inputHtml;

return innerContent + infoHtml + validation;
return innerContent + validation + infoHtml;
}

protected virtual string SurroundInnerHtmlAndGet(TagHelperContext context, TagHelperOutput output, string innerHtml, bool isCheckbox)
Expand Down

0 comments on commit 2bed9f7

Please sign in to comment.