enoqueJonas / ToDo-List

A web page that allows you to manage your todo list. You can create, delete and mark todos as done, and you can refresh the page and not lose your list. Built with JavaScript.
MIT License
2 stars 0 forks source link

Making the todo list interactive #5

Closed enoqueJonas closed 1 year ago

enoqueJonas commented 1 year ago

Project requirements

enoqueJonas commented 1 year ago

Hello @levy002 . When I click on the checkbox, the value for the completed key changes. When the checkbox is checked, the value changes to true, when it is not checked, the value is false. I added a console.log in the function that changes the 'completed' value, and whenever I clicked the checkbox and logged the array, the value had been changed. Can you please specify what I need to change?

levy002 commented 1 year ago

Hello @enoqueJonas, when I checked the todo checkbox the task must be updated in the local storage but in your app, the local storage is not being updated. Please make sure the local storage is updated.