You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are 5 instances where class="list-group-item" has an extra "}", which TypeScript / Linting does not detect. The result is that bootstrap does not pick up on the list-group-item class and does not style the to-do list item correctly.
An example code snippet from within the book is
vartodo={id: 123,name: "Pick up drycleaning",completed: true}container.innerHTML=` <div todo='${todo.id}' class="list-group-item}"> <i class="[[ If Todo is complete, then "hidden" ]] text-success glyphicon glyphicon-ok"></i> <span class="name">${todo.name}</span> </div> `