diff options
| author | name2965 <66663783+name2965@users.noreply.github.com> | 2025-08-19 14:35:15 +0900 |
|---|---|---|
| committer | Aleksandr Nogikh <nogikh@google.com> | 2025-08-19 12:29:48 +0000 |
| commit | 03e4581ec1140975451fd127a7d5711be00a6938 (patch) | |
| tree | 16918b6ebdd5b7f5cffdb6c9cfbab91350b2870e /dashboard/app | |
| parent | 523f460ebff983aabd0f441fbc60069cb96a56d1 (diff) | |
dashboard/app/templates: fix to display repro type incorrectly
Fix the problem where syz repro was displayed as C repro when defining test_result html.
Diffstat (limited to 'dashboard/app')
| -rw-r--r-- | dashboard/app/templates/templates.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dashboard/app/templates/templates.html b/dashboard/app/templates/templates.html index f675a0251..af54dab6f 100644 --- a/dashboard/app/templates/templates.html +++ b/dashboard/app/templates/templates.html @@ -631,7 +631,7 @@ Use of this source code is governed by Apache 2 LICENSE that can be found in the <td class="stat">{{link $item.KernelCommitLink (formatTagHash $item.KernelCommit)}}</td> <td> {{if $item.ReproCLink}}<a href="{{$item.ReproCLink}}">C</a> - {{else if $item.ReproSyzLink}}<a href="{{$item.ReproSyzLink}}">C</a>{{end}} + {{else if $item.ReproSyzLink}}<a href="{{$item.ReproSyzLink}}">syz</a>{{end}} </td> {{if ne $item.CrashTitle ""}} <td class="status-crashed"> |
