summaryrefslogtreecommitdiff
path: root/internal/tui/export
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-03-09 22:54:11 +0200
committerPaul Buetow <paul@buetow.org>2026-03-09 22:54:11 +0200
commitbcaa22111ac619e317f7adfd60a1fc6bd4db8d29 (patch)
treecef38740e879472b57961f2ddc9694773b202e2c /internal/tui/export
parenteb53d7c881b6b8a513c1350736c5f5df770e4089 (diff)
tui: export filtered stream rows from global CSV action (task 364)
Diffstat (limited to 'internal/tui/export')
-rw-r--r--internal/tui/export/doc.go2
-rw-r--r--internal/tui/export/model.go4
2 files changed, 3 insertions, 3 deletions
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 {