From 67722427d14990028601b9a9c6ef94c6cffd4e00 Mon Sep 17 00:00:00 2001 From: OpenClaw Bot Date: Wed, 18 Feb 2026 14:41:07 -0600 Subject: [PATCH] Add Task #9 - Priority editing feature for Kanban board User needs ability to change task priority (Low/Medium/High/Urgent) from the UI instead of editing code. Add dropdown/selector to task detail view for re-prioritization. --- src/stores/useTaskStore.ts | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/src/stores/useTaskStore.ts b/src/stores/useTaskStore.ts index bf67c0e..cdbf6f1 100644 --- a/src/stores/useTaskStore.ts +++ b/src/stores/useTaskStore.ts @@ -203,6 +203,22 @@ const defaultTasks: Task[] = [ { id: 'c20', text: 'Need to add logging/capture to see what kills processes', createdAt: new Date().toISOString(), author: 'user' } ], tags: ['debugging', 'research', 'infrastructure', 'root-cause'] + }, + { + id: '9', + title: 'Add ability to edit task priority in Kanban board', + description: 'Currently users cannot change task priority (Low/Medium/High/Urgent) from the UI. Need to add priority editing capability to the task detail view or task card. Should be a dropdown selector allowing users to re-prioritize tasks on the fly without editing code.', + type: 'task', + status: 'backlog', + priority: 'high', + projectId: '2', + createdAt: new Date().toISOString(), + updatedAt: new Date().toISOString(), + comments: [ + { id: 'c24', text: 'User cannot currently change priority from Medium to High in UI', createdAt: new Date().toISOString(), author: 'user' }, + { id: 'c25', text: 'Need priority dropdown/editor in task detail view', createdAt: new Date().toISOString(), author: 'assistant' } + ], + tags: ['ui', 'kanban', 'feature', 'priority'] } ]