[GITEA] Fix label render containing invalid HTML

- The label HTML contained a quote that wasn't being closed.

(cherry picked from commit e2bc2c9a1f)
(cherry picked from commit c42b53c6b0)
This commit is contained in:
Gusted 2023-10-22 00:34:57 +02:00 committed by Earl Warren
parent 432eeb5844
commit 36ad8c5287
No known key found for this signature in database
GPG key ID: 0579CB2928A78A00

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,