We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 674963a commit 9ee0d2bCopy full SHA for 9ee0d2b
render/render.go
@@ -229,8 +229,8 @@ func (m rootModel) View() string {
229
}
230
231
str.WriteString(" > Command stdout:\n\n")
232
- sliced := strings.Split(step.result.CLICommandResult.Stdout, "\n")
233
- for _, s := range sliced {
+ sliced := strings.SplitSeq(step.result.CLICommandResult.Stdout, "\n")
+ for s := range sliced {
234
str.WriteString(gray.Render(s))
235
str.WriteByte('\n')
236
0 commit comments