# Change: Enhance Frontend UX with Kanban View and Component Integration ## Why The current frontend only implements a basic list view for tasks and has several components that are built but not integrated. This limits user productivity and leaves implemented features inaccessible. Issues addressed: - HIGH-005: Only list view exists, need Kanban view - HIGH-007: Comments, Attachments, Triggers components exist but aren't integrated - HIGH-008: Task creation lacks assignee selection and time estimation ## What Changes - Add Kanban board view with drag-and-drop status changes - Add view toggle between List and Kanban views - Integrate TaskAttachments component into task detail - Integrate Comments component into task detail - Add assignee dropdown to task creation/editing - Add due date and time estimate fields to task form - Create task detail modal/drawer component ## Impact - Affected specs: task-management - Affected code: - `frontend/src/pages/Tasks.tsx` - add view toggle, enhance create modal - `frontend/src/components/KanbanBoard.tsx` - new component - `frontend/src/components/TaskDetailModal.tsx` - new component - `frontend/src/services/api.ts` - add user list endpoint call