From bcaa22111ac619e317f7adfd60a1fc6bd4db8d29 Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Mon, 9 Mar 2026 22:54:11 +0200 Subject: tui: export filtered stream rows from global CSV action (task 364) --- internal/tui/export/doc.go | 2 +- internal/tui/export/model.go | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'internal/tui/export') diff --git a/internal/tui/export/doc.go b/internal/tui/export/doc.go index 356b800..5be50d7 100644 --- a/internal/tui/export/doc.go +++ b/internal/tui/export/doc.go @@ -1,2 +1,2 @@ -// Package export implements the TUI snapshot export modal and option handling. +// Package export implements the top-level TUI stream export modal and option handling. package export diff --git a/internal/tui/export/model.go b/internal/tui/export/model.go index 179754d..7cef65a 100644 --- a/internal/tui/export/model.go +++ b/internal/tui/export/model.go @@ -18,7 +18,7 @@ const ( ) var optionLabels = []string{ - "CSV snapshot", + "CSV stream rows", "Cancel", } @@ -147,7 +147,7 @@ func (m Model) View(width, height int) string { } } - lines := []string{"Export"} + lines := []string{"Export Stream CSV"} for i, label := range optionLabels { prefix := " " if i == m.selected && !m.exporting { -- cgit v1.2.3