Skip to content

Commit 29d12cf

Browse files
CirnoTlafriks
andauthored
Present repository name as {{name}}#{{index}} instead of label on dashboard issuelist (#14085)
Co-authored-by: Lauris BH <lauris@nix.lv>
1 parent e8a354f commit 29d12cf

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

templates/shared/issuelist.tmpl

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,6 @@
3131
</div>
3232
<div class="issue-item-main f1 fc df">
3333
<div class="issue-item-top-row df ac fw">
34-
{{if eq $.listType "dashboard"}}
35-
<div class="ui label mr-3">{{.Repo.FullName}}</div>
36-
{{end}}
3734
<a class="title mr-3" href="{{if .HTMLURL}}{{.HTMLURL}}{{else}}{{$.Link}}/{{.Index}}{{end}}">
3835
{{RenderEmoji .Title}}
3936
{{if .IsPull }}
@@ -50,7 +47,11 @@
5047
</div>
5148
<div class="desc issue-item-bottom-row df ac fw my-1">
5249
<a class="index ml-0 mr-2" href="{{if .HTMLURL}}{{.HTMLURL}}{{else}}{{$.Link}}/{{.Index}}{{end}}">
53-
#{{.Index}}
50+
{{if eq $.listType "dashboard"}}
51+
{{.Repo.FullName}}#{{.Index}}
52+
{{else}}
53+
#{{.Index}}
54+
{{end}}
5455
</a>
5556
{{ $timeStr := TimeSinceUnix .GetLastEventTimestamp $.Lang }}
5657
{{if .OriginalAuthor }}

0 commit comments

Comments
 (0)