Edit Tasks
2 min read
Updated May 2026
WeKraft Team
Modify task properties, update progress statuses, link codebase paths.
Where to Go & How to Go
1. Kanban Status Transitions (Board View)
- Where to Go: Navigate to Manage → Tasks and select the Board View tab.
- How to Go:
- Hover over a task card and drag it between status columns (
Not Started,In Progress,Reviewing,Testing,Completed). - Status Change Constraint (Block Lock): If a task has been flagged as blocked (
isBlocked === true), attempting to transition it toCompletedwill be rejected by the UI, showing the warning toast:"task is marked as blocked , kindly fix that"
- You must resolve the blocking issue before marking the task complete.
- Hover over a task card and drag it between status columns (
2. Task Details Sheet (Read-Only & Escalation)
- Where to Go: Click on any task card or row in the List, Board, or Table views.
- How to Go:
- A detailed workspace sheet (
TaskDetailSheet.tsx) will slide open from the right. - This sheet is primarily read-only for task parameters, but allows you to:
- View title, description, dates, priority, codebase link, and assignees.
- View, add, and download attachments (max 10MB per file; disabled on Free plan).
- Add team comments and mentions in the comment feed.
- Escalate Blockages: Click "Mark as Issue" to flag the task as blocked. This sets
isBlockedtotrue, creates a linked issue, and automatically copies over all task assignees.
- A detailed workspace sheet (
3. Detailed Parameter Editing (Edit Task Dialog)
- Where to Go: Open the task details side sheet.
- How to Go:
- Click the "Edit Task" button at the top of the side sheet.
- The
EditTaskDialog.tsxmodal will open. - Here, project members can make full edits: modify the Title, Description, Priority, Duration (Start/End dates), Tag, Codebase Link, and modify the Assignee Checklist.
- Click Save Changes.
Task Views Comparison
- List View: Structured by status sections. Best for quick inline task additions and overview scanning.
- Board View: Visual Kanban board. Best for tracking daily progress.
- Table View: Spreadsheet-like grid. Allows sorting by priority, tag, status, and dates.