[GITEA] Fix label render containing invalid HTML
- The label HTML contained a quote that wasn't being closed. (cherry picked from commite2bc2c9a1f
) (cherry picked from commitc42b53c6b0
)
This commit is contained in:
parent
432eeb5844
commit
36ad8c5287
1 changed files with 1 additions and 1 deletions
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue