mirror of
https://github.com/wasp-lang/wasp.git
synced 2024-11-09 01:31:16 +03:00
Removed redundant readonly attribute from todo app example.
This commit is contained in:
parent
e5b8f52728
commit
604dcc5700
@ -49,7 +49,7 @@ const Task = (props) => {
|
||||
<div>
|
||||
<input
|
||||
type='checkbox' id={props.task.id}
|
||||
checked={props.task.isDone} readOnly
|
||||
checked={props.task.isDone}
|
||||
onChange={handleIsDoneChange}
|
||||
/>
|
||||
{props.task.description}
|
||||
|
Loading…
Reference in New Issue
Block a user