aboutsummaryrefslogtreecommitdiffstats
path: root/dashboard/app/bug.html
diff options
context:
space:
mode:
authorAleksandr Nogikh <nogikh@google.com>2023-04-24 19:52:41 +0200
committerAleksandr Nogikh <wp32pw@gmail.com>2023-04-27 11:42:09 +0200
commit703f643f91e8becd2495f1f102346a0b7fa63867 (patch)
treec304e8d97b58127b6c539096f7d283d8582d12c8 /dashboard/app/bug.html
parentcef7cc0993422a96dff2c22d1afc9f87502bb289 (diff)
dashboard: support bug labels
Let bug labels come in three flavours: 1) Bug labels with multiple values (e.g. `subsystems`). 2) Bug labels with only one value (e.g. `prio`). 3) Flags. Let users configure bug labels via email by issuing the following commands: #syz set subsystems: abc, def #syz set no-reminders #syz unset no-reminders Also let users set tags for invididual bugs in reported bug lists: #syz set <1> some-tag
Diffstat (limited to 'dashboard/app/bug.html')
-rw-r--r--dashboard/app/bug.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/dashboard/app/bug.html b/dashboard/app/bug.html
index 141059358..fedcb0ff1 100644
--- a/dashboard/app/bug.html
+++ b/dashboard/app/bug.html
@@ -16,11 +16,11 @@ 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>
+ {{if .Labels}}
+ Labels: {{range .Labels}}
+ <span class="bug-label">{{link .Link .Name}}</span>
{{- end}}
- <a href="https://github.com/google/syzkaller/blob/master/docs/syzbot.md#subsystems">(incorrect?)</a><br>
+ <a href="https://github.com/google/syzkaller/blob/master/docs/syzbot.md#labels">(incorrect?)</a><br>
{{- end}}
{{if .Bug.CreditEmail}}
Reported-by: {{.Bug.CreditEmail}}<br>