We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aa7047b commit bb9ca38Copy full SHA for bb9ca38
15 - LocalStorage/index-START-y.html
@@ -49,7 +49,8 @@ <h2>LOCAL TAPAS</h2>
49
populateList.innerHTML = plates.map((plate, i)=>{
50
return `
51
<li>
52
- <label for="">${plate.text}</label>
+ <input type="checkbox" data-index = ${i} id="item${i}" ${plate.done ? 'checked' : ''}/>
53
+ <label for="item${i}">${plate.text}</label>
54
</li>
55
`;
56
}).join('');
0 commit comments