summaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
Diffstat (limited to 'templates')
-rw-r--r--templates/issue/list.tmpl4
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/issue/list.tmpl b/templates/issue/list.tmpl
index 6862aadcd2..ba8055309d 100644
--- a/templates/issue/list.tmpl
+++ b/templates/issue/list.tmpl
@@ -18,10 +18,10 @@
<ul class="list-unstyled" id="label-list" data-ajax="{{$.RepoLink}}/issues/labels/delete">
{{range .Labels}}
<li class="label-item" id="label-{{.Id}}" data-id="{{.Id}}">
- <a href="?type={{$.ViewType}}&state={{$.State}}&labels={{.Id}}">
+ <a href="?type={{$.ViewType}}&state={{$.State}}{{if not (eq $.SelectLabels .Id)}}&labels={{.Id}}{{end}}">
<span class="pull-right count">{{if $.IsShowClosed}}{{.NumClosedIssues}}{{else}}{{.NumOpenIssues}}{{end}}</span>
<span class="color" style="background-color: {{.Color}}" data-color="{{.Color}}"></span>
- <span class="name">{{.Name}}</span>
+ <span class="name">{{.Name}}{{if eq $.SelectLabels .Id}}*{{end}}</span>
</a>
<a class="del pull-right" href="#" data-id="{{.Id}}"><i class="fa fa-times-circle-o"></i></a>
</li>