Skip to content

Commit 81b5090

Browse files
committed
Fix warnings about not rending componments properly
1 parent e3efdcf commit 81b5090

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/TodoList.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
<!--repeat for each tasks-->
6565
<li v-for="todo in todos" :key="todo.newId" class="todo">
6666
<span
67-
v-bind:class="{
67+
:class="{
6868
overdue: new Date(todo.dueDate + ' 23:59:59.999') < new Date(),
6969
}"
7070
><span id="text-numeric-display"

0 commit comments

Comments
 (0)