aboutsummaryrefslogtreecommitdiffstats
path: root/dashboard/app/templates.html
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2021-02-01 11:07:36 +0100
committerDmitry Vyukov <dvyukov@google.com>2021-02-01 13:55:41 +0100
commite6b95f320e195f8f4ddab87c7442dae4b7ac4c8e (patch)
treee5f251c1efd594657d4ac00591ab1ac31a5a09e8 /dashboard/app/templates.html
parenta90756aeafb13d734f4415838c54cdbdfd7ee99a (diff)
dashboard/app: show crash titles
Show crash title for each crash, since they can be different now. More fancy solutions are possible, but let's start with just exposing it. Remove Maintainers instead, I am not sure who/how uses them. Nobody uses them now to the best of my knowledge, but they take lots of page space. Update #1575
Diffstat (limited to 'dashboard/app/templates.html')
-rw-r--r--dashboard/app/templates.html10
1 files changed, 3 insertions, 7 deletions
diff --git a/dashboard/app/templates.html b/dashboard/app/templates.html
index 0fc52bd66..e0009223a 100644
--- a/dashboard/app/templates.html
+++ b/dashboard/app/templates.html
@@ -317,10 +317,8 @@ Use of this source code is governed by Apache 2 LICENSE that can be found in the
<th><a onclick="return sortTable(this, 'Report', reproSort)" href="#">Report</a></th>
<th><a onclick="return sortTable(this, 'Syz repro', reproSort)" href="#">Syz repro</a></th>
<th><a onclick="return sortTable(this, 'C repro', textSort)" href="#">C repro</a></th>
- <th><a onclick="return sortTable(this, 'machine info', textSort)" href="#">VM info</a></th>
- {{if .HasMaintainers}}
- <th><a onclick="return sortTable(this, 'Maintainers', textSort)" href="#">Maintainers</a></th>
- {{end}}
+ <th><a onclick="return sortTable(this, 'VM info', textSort)" href="#">VM info</a></th>
+ <th><a onclick="return sortTable(this, 'Title', textSort)" href="#">Title</a></th>
</tr>
</thead>
<tbody>
@@ -338,9 +336,7 @@ Use of this source code is governed by Apache 2 LICENSE that can be found in the
<td class="repro">{{if $b.ReproSyzLink}}<a href="{{$b.ReproSyzLink}}">syz</a>{{end}}</td>
<td class="repro">{{if $b.ReproCLink}}<a href="{{$b.ReproCLink}}">C</a>{{end}}</td>
<td class="repro">{{if $b.MachineInfoLink}}<a href="{{$b.MachineInfoLink}}">info</a>{{end}}</td>
- {{if $.HasMaintainers}}
- <td class="maintainers" title="{{$b.Maintainers}}">{{$b.Maintainers}}</td>
- {{end}}
+ <td class="manager">{{$b.Title}}</td>
</tr>
{{end}}
</tbody>