From 4e740c00a474b578896830c7d27d90d9474364bb Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Thu, 22 Oct 2020 18:59:10 +0200 Subject: dashboard/app: show more detailed info about bisections 1. Split cause/fix bisections in the bug table. 2. Show if bisection is inconclusive/unreliable in the bug table. 3. Show if bisection is unreliable on the bug page. Update #2098 --- dashboard/app/static/common.js | 2 +- dashboard/app/static/style.css | 7 +++++++ 2 files changed, 8 insertions(+), 1 deletion(-) (limited to 'dashboard/app/static') diff --git a/dashboard/app/static/common.js b/dashboard/app/static/common.js index 6d03cf78d..ec5a5c767 100644 --- a/dashboard/app/static/common.js +++ b/dashboard/app/static/common.js @@ -38,7 +38,7 @@ function isSorted(values) { return true; } -function textSort(v) { return v.toLowerCase(); } +function textSort(v) { return v == "" ? "zzz" : v.toLowerCase(); } function numSort(v) { return -parseInt(v); } function floatSort(v) { return -parseFloat(v); } function reproSort(v) { return v == "C" ? 0 : v == "syz" ? 1 : 2; } diff --git a/dashboard/app/static/style.css b/dashboard/app/static/style.css index ae0a2ae6c..669e32dfe 100644 --- a/dashboard/app/static/style.css +++ b/dashboard/app/static/style.css @@ -157,6 +157,13 @@ table td, table th { text-align: right; } +.list_table .bisect_status { + width: 75pt; + max-width: 75pt; + font-family: monospace; + text-align: right; +} + .list_table .date { width: 60pt; max-width: 60pt; -- cgit mrf-deployment