Skip to content

Commit

Permalink
Update todomvc.vue
Browse files Browse the repository at this point in the history
  • Loading branch information
mythz committed Feb 19, 2024
1 parent c5f906d commit 20f1f22
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MyApp.Client/src/pages/todomvc.vue
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<div class="relative flex items-start" @click="store.toggleTodo(todo.id)">
<div class="flex items-center h-6">
<Iconify v-if="todo.isFinished" icon="mdi:check-circle" class="text-green-600" />
<Iconify v-else icon="mdi/checkbox-blank-circle-outline" />
<Iconify v-else icon="mdi:checkbox-blank-circle-outline" />
</div>
<div class="ml-3 flex-grow">
<label :class="{'line-through':todo.isFinished}">{{ todo.text }}</label>
Expand Down

0 comments on commit 20f1f22

Please sign in to comment.