Try your search with a different keyword or use * as a wildcard.
@model EntityUseCodeModel
@if (Model.Id > 0)
{
var field = await Html.PartialAsync("~/Plugins/Tax.Avalara/Views/EntityUseCode/_EntityUseCodeField.cshtml", Model);
<text>
<script>
$(function() {
$('#@Model.PrecedingElementId').closest('.form-group').after(`@field`);
$('#AvalaraEntityUseCode_label > .ico-help').css('color', '#f39c12');
});
</script>
</text>
}