From 388a02d3ab829f26ce5fea50b858e107caa571c5 Mon Sep 17 00:00:00 2001 From: dave Date: Fri, 2 Jan 2026 01:09:00 -0800 Subject: [PATCH] fix: convoy TUI uses wrong column name for dependency type MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The TUI query used 'dependency_type' but the actual column is 'type'. This caused expand to show nothing when pressing Enter on a convoy. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- internal/tui/convoy/model.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/tui/convoy/model.go b/internal/tui/convoy/model.go index d9524ddb..6d821104 100644 --- a/internal/tui/convoy/model.go +++ b/internal/tui/convoy/model.go @@ -139,7 +139,7 @@ func loadTrackedIssues(townBeads, convoyID string) ([]IssueItem, int, int) { query := fmt.Sprintf(` SELECT d.depends_on_id FROM dependencies d - WHERE d.issue_id = '%s' AND d.dependency_type = 'tracks' + WHERE d.issue_id = '%s' AND d.type = 'tracks' `, convoyID) cmd := exec.CommandContext(ctx, "sqlite3", "-json", dbPath, query)