From 1819c7c56b6062d017761659ac09b59a5a6a3733 Mon Sep 17 00:00:00 2001 From: Gusted Date: Sun, 22 Oct 2023 00:34:57 +0200 Subject: [PATCH] [GITEA] Fix label render containing invalid HTML - The label HTML contained a quote that wasn't being closed. (cherry picked from commit e2bc2c9a1fff482c49dbeb3a51e4e1c698bf506c) --- modules/templates/util_render.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/templates/util_render.go b/modules/templates/util_render.go index ed6eae326a..84c3a1587a 100644 --- a/modules/templates/util_render.go +++ b/modules/templates/util_render.go @@ -179,7 +179,7 @@ func RenderLabel(ctx context.Context, label *issues_model.Label) template.HTML { s := fmt.Sprintf(""+ "
%s
"+ - "
%s
"+ + "
%s
"+ "
", description, textColor, scopeColor, scopeText,