You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add 4 new browse filters (priority cycle, project text input, my-items
toggle, sort cycle), two-line filter bar, replace EFFORT column with
color-coded STATUS, add POSTED BY for wide terminals, and a new "Me"
dashboard view with claimed/in-review/completed sections.
Key fixes: toggling Mine ON resets status to "all" to avoid empty results
when items aren't in "open" state. Project filter value stored as plain
string field decoupled from textinput state to survive value-receiver
copies across bubbletea update cycles.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
"SELECT id, title, COALESCE(project,'') as project, COALESCE(type,'') as type, priority, COALESCE(posted_by,'') as posted_by, status, COALESCE(effort_level,'medium') as effort_level FROM wanted WHERE status = 'claimed' AND claimed_by = '%s' ORDER BY priority ASC, created_at DESC LIMIT 50",
// In-review items (posted by me, awaiting my review).
289
+
reviewQ:=fmt.Sprintf(
290
+
"SELECT id, title, COALESCE(project,'') as project, COALESCE(type,'') as type, priority, COALESCE(posted_by,'') as posted_by, status, COALESCE(effort_level,'medium') as effort_level FROM wanted WHERE status = 'in_review' AND posted_by = '%s' ORDER BY priority ASC, created_at DESC LIMIT 50",
"SELECT id, title, COALESCE(project,'') as project, COALESCE(type,'') as type, priority, COALESCE(posted_by,'') as posted_by, status, COALESCE(effort_level,'medium') as effort_level FROM wanted WHERE status = 'completed' AND claimed_by = '%s' ORDER BY created_at DESC LIMIT 5",
0 commit comments