fix(capa): filter owner dropdown by capa_owner role

Was filtering by non-null department, excluding capa_owner
users who had no department set.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01BzvzV91UqHZKM9P58qtvrA
This commit is contained in:
2026-07-16 21:12:12 +08:00
co-authored by Claude Sonnet 4.6
parent e949016bd4
commit b08fec385d
3 changed files with 4 additions and 2 deletions
@@ -26,7 +26,7 @@ export default async function NewCapaPage({ params }: Props) {
const { data: users } = await supabase
.from('users')
.select('id, name, department')
.not('department', 'is', null)
.eq('role', 'capa_owner')
.order('name')
return (