diff --git a/TagHelpers/BsIconTagHelper.cs b/TagHelpers/BsIconTagHelper.cs index 6b28216..3a6188e 100644 --- a/TagHelpers/BsIconTagHelper.cs +++ b/TagHelpers/BsIconTagHelper.cs @@ -81,7 +81,7 @@ namespace AcdiuTools.TagHelpers output.Attributes.SetAttribute("width", !string.IsNullOrWhiteSpace(Width) ? Width : Height); output.Attributes.SetAttribute("height", !string.IsNullOrWhiteSpace(Height) ? Height : Width); - // 继续添加用户自定义的 ClassName(如果有的话) + // 继续添加用户自定义的 ClassName (如果有的话) output.Attributes.SetAttribute("class", MergeClassNames(string.IsNullOrWhiteSpace(ClassName) ? "" : $"{ClassName}")); } else