| Index: milo/api/resp/build.go
|
| diff --git a/milo/api/resp/build.go b/milo/api/resp/build.go
|
| index 9c7e9685641a304801633ef64fcd1dfff70567e3..95f55b5fbbecdfb127931a0e0a2c2d43dffd2100 100644
|
| --- a/milo/api/resp/build.go
|
| +++ b/milo/api/resp/build.go
|
| @@ -285,7 +285,7 @@ func NewLink(label, url string) *Link {
|
| }
|
|
|
| func (comp *BuildComponent) toModelSummary() model.Summary {
|
| - text := comp.Text
|
| + text := strings.Join(comp.Text, "\n")
|
| // Max length for a datastore text field is 1500 char, but for summary purposes
|
| // we don't really need anything much longer than 256 char or so.
|
| const maxTextLen = 256
|
| @@ -302,7 +302,7 @@ func (comp *BuildComponent) toModelSummary() model.Summary {
|
| Status: comp.Status,
|
| Start: comp.Started,
|
| End: comp.Finished,
|
| - Text: text,
|
| + Text: strings.Split(text, "\n"),
|
| }
|
| }
|
|
|
|
|