aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2023-04-01 09:31:55 +0200
committerDmitry Vyukov <dvyukov@google.com>2023-04-03 08:59:25 +0200
commit03b9fe08ab79653ea793034e4614be851d110eec (patch)
tree920f495f49ebb6e0700376b130ce014adf0770b2
parentdba2ffb9e2893764c52cc440f6566cd212a585c7 (diff)
dashboard/app: move manager to the end of crashes table
Manager name does not tell much to end users. They are also long and all prefixed with ci[2]-upstream-, this takes lots of space in the table. Move it to the end of the table.
-rw-r--r--dashboard/app/templates.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/dashboard/app/templates.html b/dashboard/app/templates.html
index fe097d86a..ccb08e01a 100644
--- a/dashboard/app/templates.html
+++ b/dashboard/app/templates.html
@@ -359,7 +359,6 @@ Use of this source code is governed by Apache 2 LICENSE that can be found in the
<caption>{{.Caption}}:</caption>
<thead>
<tr>
- <th><a onclick="return sortTable(this, 'Manager', textSort)" href="#">Manager</a></th>
<th><a onclick="return sortTable(this, 'Time', textSort, true)" href="#">Time</a></th>
<th><a onclick="return sortTable(this, 'Kernel', textSort)" href="#">Kernel</a></th>
<th><a onclick="return sortTable(this, 'Commit', textSort)" href="#">Commit</a></th>
@@ -371,13 +370,13 @@ Use of this source code is governed by Apache 2 LICENSE that can be found in the
<th><a onclick="return sortTable(this, 'C repro', textSort)" href="#">C repro</a></th>
<th><a onclick="return sortTable(this, 'VM info', textSort)" href="#">VM info</a></th>
<th><a onclick="return sortTable(this, 'Assets', textSort)" href="#">Assets</a></th>
+ <th><a onclick="return sortTable(this, 'Manager', textSort)" href="#">Manager</a></th>
<th><a onclick="return sortTable(this, 'Title', textSort)" href="#">Title</a></th>
</tr>
</thead>
<tbody>
{{range $b := .Crashes}}
<tr>
- <td class="manager">{{$b.Manager}}</td>
<td class="time">{{formatTime $b.Time}}</td>
<td class="kernel" title="{{$b.KernelAlias}}">{{$b.KernelAlias}}</td>
<td class="tag" title="{{$b.KernelCommit}}
@@ -392,6 +391,7 @@ Use of this source code is governed by Apache 2 LICENSE that can be found in the
<td class="assets">{{range $i, $asset := .Assets}}
<span class="no-break">[<a href="{{$asset.DownloadURL}}">{{$asset.Title}}</a>]</span>
{{end}}</td>
+ <td class="manager">{{$b.Manager}}</td>
<td class="manager">{{$b.Title}}</td>
</tr>
{{end}}