Skip to content

Commit ee8efd4

Browse files
committed
cmd/coordinator: fix another UI issue with trybots against old Go releases
Updates golang/go#28580 Updates golang/go#17626 Change-Id: Ifa88e4ad23e823e5d1a25c46b76afb11b4e7907b Reviewed-on: https://go-review.googlesource.com/c/147497 Reviewed-by: Dmitri Shuralyov <[email protected]>
1 parent cda6dc7 commit ee8efd4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmd/coordinator/coordinator.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -664,7 +664,7 @@ func serveTryStatusHTML(w http.ResponseWriter, ts *trySet, tss trySetState) {
664664
}
665665
bs.mu.Unlock()
666666
fmt.Fprintf(buf, "<tr valign=top><td align=left>%s</td><td align=center>%s</td><td><pre>%s</pre></td></tr>\n",
667-
bs.Name,
667+
html.EscapeString(bs.NameAndBranch()),
668668
status,
669669
bs.HTMLStatusLine())
670670
}

0 commit comments

Comments
 (0)