fix: convoy TUI uses wrong column name for dependency type

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 <noreply@anthropic.com>
This commit is contained in:
dave
2026-01-02 01:09:00 -08:00
committed by beads/crew/dave
parent 0479026dd1
commit 388a02d3ab
+1 -1
View File
@@ -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)