diff options
| author | Aleksandr Nogikh <nogikh@google.com> | 2022-08-11 18:21:25 +0000 |
|---|---|---|
| committer | Aleksandr Nogikh <wp32pw@gmail.com> | 2022-08-26 12:33:44 +0200 |
| commit | 2f3b44ea4305aa200432fef587ba1a6dc89a00f3 (patch) | |
| tree | 0d9ab5ea33fd6f16c608a0c754b2bbd0c8c31a3d /dashboard/app/templates.html | |
| parent | ae7ef8be831892da91b059337920c5db86941580 (diff) | |
dashboard: visualize stale repros
When rendering a crash list, strike stale repros with a line (like the
<s></s> tag does).
Diffstat (limited to 'dashboard/app/templates.html')
| -rw-r--r-- | dashboard/app/templates.html | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/dashboard/app/templates.html b/dashboard/app/templates.html index bc3ae3ded..a9fc80727 100644 --- a/dashboard/app/templates.html +++ b/dashboard/app/templates.html @@ -350,14 +350,15 @@ Use of this source code is governed by Apache 2 LICENSE that can be found in the <td class="config">{{if $b.KernelConfigLink}}<a href="{{$b.KernelConfigLink}}">.config</a>{{end}}</td> <td class="repro">{{if $b.LogLink}}<a href="{{$b.LogLink}}">log</a>{{end}}</td> <td class="repro">{{if $b.ReportLink}}<a href="{{$b.ReportLink}}">report</a>{{end}}</td> - <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.ReproIsRevoked}} stale_repro{{end}}">{{if $b.ReproSyzLink}}<a href="{{$b.ReproSyzLink}}">syz</a>{{end}}</td> + <td class="repro {{if $b.ReproIsRevoked}} stale_repro{{end}}">{{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> <td class="manager">{{$b.Title}}</td> </tr> {{end}} </tbody> </table> +<i>* <s>Struck through</s> repros no longer work on HEAD.</i> {{end}} {{end}} |
