Update pkg/tui/views/dashboard/issue_list.go

making the comment in OpenAndInProgressOnly more descriptive

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
viljarb0
2026-02-19 10:36:50 +01:00
committed by GitHub
parent e528788522
commit 15647bbe9d

View File

@@ -132,7 +132,7 @@ func NewIssueListFromIssues(svc *service.Services, issues []models.Issue, width,
}
func OpenAndInProgressOnly(issues []models.Issue) []models.Issue {
// used to display issues in the first window in the dashboard
// used to display open & in-progress issues in the first window in the dashboard
out := make([]models.Issue, 0, len(issues))
for _, issue := range issues {
if issue.Status == models.StatusOpen || issue.Status == models.StatusInProgress {