diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2016-10-07 09:25:42 +0200 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2016-10-07 09:25:42 +0200 |
| commit | ff62857ef3168d1a3d42c67a7cd20609129edb31 (patch) | |
| tree | a9b5db6cd28eaf7abf2ceb0ae60468407e46314a | |
| parent | f032ffb788a43233a5229c64e7be9def44967a31 (diff) | |
manager: fix html table markup
| -rw-r--r-- | syz-manager/html.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/syz-manager/html.go b/syz-manager/html.go index a5f4f5cf3..f2d8b579e 100644 --- a/syz-manager/html.go +++ b/syz-manager/html.go @@ -445,9 +445,9 @@ var summaryTemplate = template.Must(template.New("").Parse(addStyle(` <table> <caption>Crashes:</caption> <tr> - <th>Description<th> - <th>Count<th> - <th>Last Time<th> + <th>Description</th> + <th>Count</th> + <th>Last Time</th> </tr> {{range $c := $.Crashes}} <tr> |
