diff options
Diffstat (limited to 'modules/templates/helper.go')
-rw-r--r-- | modules/templates/helper.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/templates/helper.go b/modules/templates/helper.go index 97d3029839..4e767ad44d 100644 --- a/modules/templates/helper.go +++ b/modules/templates/helper.go @@ -371,7 +371,7 @@ func NewFuncMap() []template.FuncMap { "RenderLabels": func(labels []*models.Label) template.HTML { html := `<span class="labels-list">` for _, label := range labels { - html += fmt.Sprintf("<div class='ui label' style='color: %s; background-color: %s'>%s</div>", + html += fmt.Sprintf("<div class='ui label' style='color: %s; background-color: %s'>%s</div> ", label.ForegroundColor(), label.Color, RenderEmoji(label.Name)) } html += "</span>" |