Skip to content

Commit

Permalink
Update CpdPropertiesList.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
killij committed Nov 13, 2023
1 parent 2b72e12 commit 2bf577a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Childrens-Social-Care-CPD/TagHelpers/CpdPropertiesList.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public override void Process(TagHelperContext context, TagHelperOutput output)
{
var span = new TagBuilder("span");
span.AddCssClass("govuk-!-font-size-16");
span.InnerHtml.Append($"{item.Key}:&nbsp{item.Value}");
span.InnerHtml.Append($"{item.Key}: {item.Value}");

var li = new TagBuilder("li");
li.InnerHtml.AppendHtml(span);
Expand Down

0 comments on commit 2bf577a

Please sign in to comment.