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:
Janpeter Visser 2026-04-26 19:59:55 +02:00
parent 856a051b2f
commit c45ba1d0c2
2 changed files with 18 additions and 0 deletions

View file

@ -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,