From 03b9fe08ab79653ea793034e4614be851d110eec Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Sat, 1 Apr 2023 09:31:55 +0200 Subject: 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. --- dashboard/app/templates.html | 4 ++-- 1 file 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}}: - Manager Time Kernel Commit @@ -371,13 +370,13 @@ Use of this source code is governed by Apache 2 LICENSE that can be found in the C repro VM info Assets + Manager Title {{range $b := .Crashes}} - {{$b.Manager}} {{formatTime $b.Time}} {{$b.KernelAlias}} {{range $i, $asset := .Assets}} [{{$asset.Title}}] {{end}} + {{$b.Manager}} {{$b.Title}} {{end}} -- cgit mrf-deployment