Merge pull request #136 from huyjs9/fix/todo-details

Fix todo details value
This commit is contained in:
lilit 2024-06-16 22:58:30 +03:00 committed by GitHub
commit 1fb947cf2a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -247,7 +247,7 @@ export default function Todo() {
<TextArea
placeholder={t("details")}
onChange={(v) => updateTask(i, { details: v })}
value={t.details}
value={task.details}
onBlur={() => setSaveState(State.SAVING)}
></TextArea>
</Col>