diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2018-07-24 14:29:21 +0200 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2018-07-24 14:29:21 +0200 |
| commit | 9b6bfa3fe89656f7eccf0bf094770d29be0c8c6a (patch) | |
| tree | 0a5e0bf06e69a2fcbbced837b8fcafac216f54c3 /dashboard/app/bug.html | |
| parent | daf70d7973cf45be490f459768ee34862f4181df (diff) | |
dashboard/app: don't show broken links to empty configs
Diffstat (limited to 'dashboard/app/bug.html')
| -rw-r--r-- | dashboard/app/bug.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dashboard/app/bug.html b/dashboard/app/bug.html index fc586b773..2cdfc8d78 100644 --- a/dashboard/app/bug.html +++ b/dashboard/app/bug.html @@ -56,7 +56,7 @@ Page with details about a single bug. <td class="kernel" title="{{$c.KernelAlias}}">{{$c.KernelAlias}}</td> <td class="tag">{{$c.KernelCommit}}</td> <td class="tag">{{$c.SyzkallerCommit}}</td> - <td class="config"><a href="{{$c.KernelConfigLink}}">.config</a></td> + <td class="config">{{if $c.KernelConfigLink}}<a href="{{$c.KernelConfigLink}}">.config</a>{{end}}</td> <td class="repro">{{if $c.LogLink}}<a href="{{$c.LogLink}}">log</a>{{end}}</td> <td class="repro">{{if $c.ReportLink}}<a href="{{$c.ReportLink}}">report</a>{{end}}</td> <td class="repro">{{if $c.ReproSyzLink}}<a href="{{$c.ReproSyzLink}}">syz</a>{{end}}</td> |
