From 657dde85f40dd4b28aa97e88e8bebfad66e4b304 Mon Sep 17 00:00:00 2001 From: Renz Date: Fri, 7 Nov 2025 12:44:25 +0000 Subject: [PATCH] Remove all lipgloss styling from history view - use plain text only --- internal/tui/history.go | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/internal/tui/history.go b/internal/tui/history.go index 7b9fc94..a27cc56 100644 --- a/internal/tui/history.go +++ b/internal/tui/history.go @@ -184,8 +184,7 @@ func (m HistoryViewModel) View() string { s.WriteString(fmt.Sprintf("\n%s\n\n", header)) if len(m.history) == 0 { - s.WriteString(infoStyle.Render("📭 No backup history found")) - s.WriteString("\n\n") + s.WriteString("📭 No backup history found\n\n") } else { maxVisible := 15 // Show max 15 items at once @@ -201,7 +200,7 @@ func (m HistoryViewModel) View() string { // Show scroll indicators if start > 0 { - s.WriteString(infoStyle.Render(" ▲ More entries above...\n")) + s.WriteString(" ▲ More entries above...\n") } // Display only visible entries @@ -223,7 +222,7 @@ func (m HistoryViewModel) View() string { // Show scroll indicator if more entries below if end < len(m.history) { - s.WriteString(infoStyle.Render(fmt.Sprintf(" ▼ %d more entries below...\n", len(m.history)-end))) + s.WriteString(fmt.Sprintf(" ▼ %d more entries below...\n", len(m.history)-end)) } s.WriteString("\n")