fix: project form - owner dropdown, sub/related projects multi-select

This commit is contained in:
Zhi
2026-03-12 10:52:54 +00:00
parent 7099e5cf77
commit bfaf9469e1
4 changed files with 84 additions and 37 deletions

View File

@@ -5,8 +5,8 @@ import type { Project } from '@/types'
const ISSUE_TYPES = [
{ value: 'story', label: 'Story', subtypes: ['feature', 'improvement', 'refactor'] },
{ value: 'issue', label: 'Issue', subtypes: ['infrastructure', 'performance', 'regression', 'security', 'user_experience'] },
{ value: 'task', label: 'Task', subtypes: [] },
{ value: 'issue', label: 'Issue', subtypes: ['infrastructure', 'performance', 'regression', 'security', 'user_experience', 'defect'] },
{ value: 'task', label: 'Task', subtypes: ['defect'] },
{ value: 'test', label: 'Test', subtypes: ['regression', 'security', 'smoke', 'stress'] },
{ value: 'maintenance', label: 'Maintenance', subtypes: ['deploy', 'release'] },
{ value: 'research', label: 'Research', subtypes: [] },