feat: editable task fields in detail panel

- Click-to-edit title and description (inline editing)
- Clickable priority selector (toggle between critical/high/medium/low)
- Clickable source selector (toggle between all sources)
- Saving indicator
- EditableText component with Escape to cancel, Enter/blur to save
- Pass token and onTaskUpdated props from App
This commit is contained in:
2026-01-29 00:59:21 +00:00
parent 76b9c61b09
commit 210fba6027
2 changed files with 178 additions and 20 deletions

View File

@@ -288,7 +288,9 @@ function Dashboard() {
handleStatusChange(id, status);
setSelectedTask(null);
}}
onTaskUpdated={refresh}
hasToken={hasToken}
token={token}
/>
)}