0.1.0 #1

Merged
Thilawyn merged 87 commits from next into master 2025-01-18 00:54:42 +01:00
Showing only changes of commit a2e6a6d7ff - Show all commits

View File

@@ -27,8 +27,8 @@ export function VNewTodo() {
<Flex direction="column" align="stretch" gap="2"> <Flex direction="column" align="stretch" gap="2">
<TextArea <TextArea
value={todo.content} value={todo.content}
onChange={e => setTodo( onChange={e => setTodo(prev =>
Todo.Todo.make({ ...todo, content: e.target.value }, true) Todo.Todo.make({ ...prev, content: e.target.value }, true)
)} )}
/> />