Fix checkbox for todo

This commit is contained in:
Max Lynch
2020-12-24 18:10:49 -06:00
parent 11a995f650
commit 7cba33e34f
2 changed files with 1 additions and 2 deletions
+1
View File
@@ -34,6 +34,7 @@ const ListItemEntry = ({ list, item }) => (
className="pointer-events-none select-none"
type="checkbox"
checked={item.done || false}
readOnly={true}
/>
</div>
);