mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-01 07:09:21 +01:00
b6dab855f5
Backport #27206 by @metiftikci fix underline for label on issue sidebar Co-authored-by: metiftikci <metiftikci@hotmail.com>
7 lines
306 B
Go HTML Template
7 lines
306 B
Go HTML Template
<a
|
|
class="item {{if not .label.IsChecked}}gt-hidden{{end}}"
|
|
id="label_{{.label.ID}}"
|
|
href="{{.root.RepoLink}}/{{if or .root.IsPull .root.Issue.IsPull}}pulls{{else}}issues{{end}}?labels={{.label.ID}}"{{/* FIXME: use .root.Issue.Link or create .root.Link */}}
|
|
>
|
|
{{- RenderLabel $.Context .label -}}
|
|
</a>
|