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
Hide Completed/Show All as shown in tutorial has a bug.
Check a task
Press "Hide Completed"
The task doesn't show
Press "Show all"
The task shows up
Bad, current behavior: The task checkbox is displayed unchecked, leading the user to think the task is not checked - and mismatches unchecked tasks with the pending count (by one, in this case)
Correct, future behavior: The task checkbox is checked
The fix lies in imports/ui/Task.html
Instead of: <input type="checkbox" class="toggle-checked" />
or similar code,
Mention: {{#if isChecked}} <input type="checkbox" checked class="toggle-checked"/> {{else}} <input type="checkbox" class="toggle-checked" /> {{/if}}
The text was updated successfully, but these errors were encountered:
Is anyone paying attention to this ticket? Is there some way for me to directly offer the code? (This is a tutorial repository - so the patch also has to be explained - that is what holds me back...)
Hide Completed/Show All as shown in tutorial has a bug.
The fix lies in imports/ui/Task.html
Instead of:
<input type="checkbox" class="toggle-checked" />
or similar code,
Mention:
{{#if isChecked}} <input type="checkbox" checked class="toggle-checked"/> {{else}} <input type="checkbox" class="toggle-checked" /> {{/if}}
The text was updated successfully, but these errors were encountered: