Mark Task #9 as COMPLETE - Priority editing implemented

This commit is contained in:
OpenClaw Bot 2026-02-18 16:06:20 -06:00
parent bc18d2379b
commit 6c2ac1f426

View File

@ -227,14 +227,15 @@ const defaultTasks: Task[] = [
title: 'Add ability to edit task priority in Kanban board', 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.', 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', type: 'task',
status: 'backlog', status: 'done',
priority: 'high', priority: 'high',
projectId: '2', projectId: '2',
createdAt: new Date().toISOString(), createdAt: new Date().toISOString(),
updatedAt: new Date().toISOString(), updatedAt: new Date().toISOString(),
comments: [ comments: [
{ id: 'c24', text: 'User cannot currently change priority from Medium to High in UI', createdAt: new Date().toISOString(), author: 'user' }, { 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' } { id: 'c25', text: 'Need priority dropdown/editor in task detail view', createdAt: new Date().toISOString(), author: 'assistant' },
{ id: 'c28', text: 'COMPLETED: Added priority buttons to task detail dialog. Click any task to see Low/Medium/High/Urgent buttons with color coding. Changes apply immediately.', createdAt: new Date().toISOString(), author: 'assistant' }
], ],
tags: ['ui', 'kanban', 'feature', 'priority'] tags: ['ui', 'kanban', 'feature', 'priority']
} }