aboutsummaryrefslogtreecommitdiffstats
path: root/dashboard/app/bug.html
diff options
context:
space:
mode:
authorAleksandr Nogikh <nogikh@google.com>2023-02-14 12:53:40 +0100
committerAleksandr Nogikh <wp32pw@gmail.com>2023-02-14 14:29:32 +0100
commit9db88265dbce82f690f9b166b24bba1570d15854 (patch)
tree8e940f34169d37ff4c6f1fb1bde5fb40255521ea /dashboard/app/bug.html
parent1d6b4af7597cff7f7150972538292e7f23189de7 (diff)
dashboard: display subsystems on the bug page
Currently the information is only displayed on the main page, which is not very convenient.
Diffstat (limited to 'dashboard/app/bug.html')
-rw-r--r--dashboard/app/bug.html6
1 files changed, 6 insertions, 0 deletions
diff --git a/dashboard/app/bug.html b/dashboard/app/bug.html
index e13aa3de8..467969106 100644
--- a/dashboard/app/bug.html
+++ b/dashboard/app/bug.html
@@ -16,6 +16,12 @@ Page with details about a single bug.
<b>{{.Bug.Title}}</b><br><br>
Status: {{if .Bug.ExternalLink}}<a href="{{.Bug.ExternalLink}}">{{.Bug.Status}}</a>{{else}}{{.Bug.Status}}{{end}}<br>
+ {{if .Subsystems}}
+ Subsystems: {{range .Subsystems}}
+ <span class="subsystem">{{link .Link .Name}}</span>
+ {{- end}}
+ <br>
+ {{- end}}
Reported-by: {{.Bug.CreditEmail}}<br>
{{if .Bug.Commits}}
<b>Fix commit:</b> {{template "fix_commits" .Bug.Commits}}<br>