feat(KB-145): add inline editing to task detail modal

- Add edit state and handlers to TaskDetailModal component
- Add edit button and inline editing UI with save/cancel actions
- Add CSS styles for inline editing form elements
- Add comprehensive tests for inline editing functionality
- Update README and add changeset for the feature
This commit is contained in:
gsxdsm
2026-03-30 08:05:58 -07:00
parent 5dba4e1524
commit 7c0a0ce1a7
5 changed files with 640 additions and 12 deletions

View File

@@ -0,0 +1,5 @@
---
"@dustinbyrne/kb": minor
---
Add edit button to task detail modal for inline editing of task title and description. Users can now edit basic task metadata directly from the task detail view for tasks in Triage and Todo columns. Includes keyboard shortcuts (Ctrl+Enter to save, Escape to cancel) and visual styling matching the existing card edit pattern.