From 969d7d07d621e89bfb0d358eb40406578f256744 Mon Sep 17 00:00:00 2001 From: Robin Olsen <129996395+Telikz@users.noreply.github.com> Date: Fri, 20 Mar 2026 12:57:34 +0100 Subject: [PATCH] Update pkg/tui/views/kanban/operations.go Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- pkg/tui/views/kanban/operations.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/tui/views/kanban/operations.go b/pkg/tui/views/kanban/operations.go index dd4d73c..6ac8f16 100644 --- a/pkg/tui/views/kanban/operations.go +++ b/pkg/tui/views/kanban/operations.go @@ -183,7 +183,7 @@ func (m *Model) Update(msg tea.Msg) (tea.Model, tea.Cmd) { blockedCmd := m.blockedList.SetIssues(blockedIssues) doneCmd := m.doneList.SetIssues(doneIssues) - // If there are no msgs at all, clear the detail view and return. + // If there are no issues at all, clear the detail view and return. if len(todoIssues) == 0 && len(inProgIssues) == 0 && len(blockedIssues) == 0 && len(doneIssues) == 0 { m.issueDetail.SetIssue(models.Issue{}) m.submitValidation()