| Index: milo/appengine/buildbot/master.go
|
| diff --git a/milo/appengine/buildbot/master.go b/milo/appengine/buildbot/master.go
|
| index 878db75911eafd4a5710808fce663eebf36dfd7c..dd48bc2f0bbcdbd3088f8da31d0ab1e215f61a09 100644
|
| --- a/milo/appengine/buildbot/master.go
|
| +++ b/milo/appengine/buildbot/master.go
|
| @@ -140,12 +140,10 @@ func GetAllBuilders(c context.Context) (*resp.CIService, error) {
|
| }
|
| sort.Strings(sb)
|
| for _, bn := range sb {
|
| - ml.Builders = append(ml.Builders, resp.Link{
|
| - Label: bn,
|
| - // Go templates escapes this for us, and also
|
| - // slashes are not allowed in builder names.
|
| - URL: fmt.Sprintf("/buildbot/%s/%s", entry.Name, bn),
|
| - })
|
| + // Go templates escapes this for us, and also
|
| + // slashes are not allowed in builder names.
|
| + ml.Builders = append(ml.Builders, *resp.NewLink(
|
| + bn, fmt.Sprintf("/buildbot/%s/%s", entry.Name, bn)))
|
| }
|
| result.BuilderGroups = append(result.BuilderGroups, ml)
|
| }
|
|
|