Skip to content

Commit cfa57dd

Browse files
lunny6543
andauthored
Fix bug that username missed on issue list assignee filter (#14481)
Co-authored-by: 6543 <[email protected]>
1 parent 1080b27 commit cfa57dd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

templates/repo/issue/list.tmpl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@
7171
<a class="item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{.SelectLabels}}&milestone={{$.MilestoneID}}">{{.i18n.Tr "repo.issues.filter_assginee_no_select"}}</a>
7272
{{range .Assignees}}
7373
<a class="{{if eq $.AssigneeID .ID}}active selected{{end}} item" href="{{$.Link}}?type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{$.SelectLabels}}&milestone={{$.MilestoneID}}&assignee={{.ID}}">
74-
{{avatar .}}
74+
{{avatar .}} {{.GetDisplayName}}
7575
</a>
7676
{{end}}
7777
</div>
@@ -178,7 +178,7 @@
178178
</div>
179179
{{range .Assignees}}
180180
<div class="item issue-action" data-element-id="{{.ID}}" data-url="{{$.RepoLink}}/issues/assignee">
181-
{{avatar .}}
181+
{{avatar .}} {{.GetDisplayName}}
182182
</div>
183183
{{end}}
184184
</div>

0 commit comments

Comments
 (0)