diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2020-10-22 18:59:10 +0200 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2020-10-22 22:02:56 +0200 |
| commit | 4e740c00a474b578896830c7d27d90d9474364bb (patch) | |
| tree | ff0f2787b64d3e339e2166325f236b2ec8227846 /pkg/html | |
| parent | 1616d34edcf609e9cff417106daa2152bbe754f8 (diff) | |
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
Diffstat (limited to 'pkg/html')
| -rw-r--r-- | pkg/html/generated.go | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/pkg/html/generated.go b/pkg/html/generated.go index 9d85807dc..5db49d857 100644 --- a/pkg/html/generated.go +++ b/pkg/html/generated.go @@ -161,6 +161,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; @@ -248,7 +255,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; } |
