[GITEA] Fix label render containing invalid HTML

- The label HTML contained a quote that wasn't being closed.
This commit is contained in:
Gusted 2023-10-22 00:34:57 +02:00 committed by Gusted
parent be5bf3fb3b
commit e2bc2c9a1f

View file

@ -179,7 +179,7 @@ func RenderLabel(ctx context.Context, label *issues_model.Label) template.HTML {
s := fmt.Sprintf("<span class='ui label scope-parent' title='%s'>"+
"<div class='ui label scope-left' style='color: %s !important; background-color: %s !important'>%s</div>"+
"<div class='ui label scope-right' style='color: %s !important; background-color: %s !important''>%s</div>"+
"<div class='ui label scope-right' style='color: %s !important; background-color: %s !important'>%s</div>"+
"</span>",
description,
textColor, scopeColor, scopeText,