diff options
| author | Paul Buetow <paul@buetow.org> | 2026-03-09 22:54:11 +0200 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2026-03-09 22:54:11 +0200 |
| commit | bcaa22111ac619e317f7adfd60a1fc6bd4db8d29 (patch) | |
| tree | cef38740e879472b57961f2ddc9694773b202e2c /internal/tui/export/model.go | |
| parent | eb53d7c881b6b8a513c1350736c5f5df770e4089 (diff) | |
tui: export filtered stream rows from global CSV action (task 364)
Diffstat (limited to 'internal/tui/export/model.go')
| -rw-r--r-- | internal/tui/export/model.go | 4 |
1 files changed, 2 insertions, 2 deletions
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 { |
