mirror of
https://github.com/go-gitea/gitea
synced 2024-11-04 01:04:25 +00:00
d793f256c8
Backport #30803 by wxiaoguang Fix #30802 Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
12 lines
412 B
Handlebars
12 lines
412 B
Handlebars
<div class="ui labels list">
|
|
<span class="labels-list">
|
|
<span class="no-select {{if .root.HasSelectedLabel}}tw-hidden{{end}}">{{ctx.Locale.Tr "repo.issues.new.no_label"}}</span>
|
|
{{range .root.Labels}}
|
|
{{template "repo/issue/labels/label" dict "root" $.root "label" .}}
|
|
{{end}}
|
|
{{range .root.OrgLabels}}
|
|
{{template "repo/issue/labels/label" dict "root" $.root "label" .}}
|
|
{{end}}
|
|
</span>
|
|
</div>
|