feat(ST-509): add description textarea to Todo create and edit cards
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
856a051b2f
commit
c45ba1d0c2
2 changed files with 18 additions and 0 deletions
|
|
@ -29,6 +29,7 @@ export default async function TodosPage() {
|
|||
todos={todos.map(t => ({
|
||||
id: t.id,
|
||||
title: t.title,
|
||||
description: t.description ?? null,
|
||||
done: t.done,
|
||||
created_at: t.created_at.toISOString(),
|
||||
product_id: t.product_id ?? null,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue