From bd4ceb7711268726aa8f0b33bfce46eb51133386 Mon Sep 17 00:00:00 2001 From: oppiliappan Date: Tue, 26 May 2026 14:18:04 +0100 Subject: [PATCH] appview/piplines/ssh: remove uncessary bgs this can only cause more issues with terminal themes Signed-off-by: oppiliappan --- appview/pipelines/ssh/tui.go | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/appview/pipelines/ssh/tui.go b/appview/pipelines/ssh/tui.go index 19309984..9c0014e9 100644 --- a/appview/pipelines/ssh/tui.go +++ b/appview/pipelines/ssh/tui.go @@ -302,8 +302,7 @@ func applyLogLine(wl *workflowLogs, line spindlemodel.LogLine) { // renderLogs builds the full log content string for a workflow, used as viewport content. func renderLogs(r *lipgloss.Renderer, wl *workflowLogs, width int) string { headerStyle := r.NewStyle().Foreground(colorWhite).Background(colorBrightBlack).Bold(true) - cmdStyle := r.NewStyle().Foreground(colorBlue).Background(colorDarkGrey).Width(width) - lineStyle := r.NewStyle().Foreground(colorWhite).Background(colorDarkGrey).Width(width) + cmdStyle := r.NewStyle().Foreground(colorBlue).Width(width) now := time.Now() var sb strings.Builder for i := range wl.steps { @@ -322,7 +321,7 @@ func renderLogs(r *lipgloss.Renderer, wl *workflowLogs, width int) string { sb.WriteString(cmdStyle.Render(st.command) + "\n") } for _, l := range st.lines { - sb.WriteString(lineStyle.Render(l) + "\n") + sb.WriteString(l + "\n") } sb.WriteString("\n") } -- 2.51.2