From e347b4924c27fcf78bc2a423b5129a53d49ee5d4 Mon Sep 17 00:00:00 2001 From: decentral1se Date: Wed, 10 May 2023 10:10:00 +0200 Subject: [PATCH] docs: add TODO --- gshmm.go | 1 + 1 file changed, 1 insertion(+) diff --git a/gshmm.go b/gshmm.go index 637f8ad..1827f4e 100644 --- a/gshmm.go +++ b/gshmm.go @@ -114,6 +114,7 @@ func (m model) Update(msg tea.Msg) (tea.Model, tea.Cmd) { func (m model) View() string { body := strings.Builder{} + // TODO(d1): paginate / trim view to last 10 or something? body.WriteString(strings.Join(m.dataSheetsView, "\n") + "\n") body.WriteString(m.filterInput.View() + "\n")