Skip to content

Commit

Permalink
fix(tasks): fix length test 馃悰
Browse files Browse the repository at this point in the history
  • Loading branch information
PierreBrisorgueil committed Mar 5, 2020
1 parent 8e946cb commit 6a6a3dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/tasks/views/tasks.view.vue
Expand Up @@ -7,7 +7,7 @@
v-bind:index="index"
v-bind:key="item.id"
></taskComponent>
<v-row v-if="!tasks.length" align="start" justify="center">
<v-row v-if="!tasks || !tasks.length" align="start" justify="center">
<v-col cols="12">
<v-card class="mx-3 pa-8" outlined tile>
<h2 class="text-center">No Tasks found :( !</h2>
Expand Down

0 comments on commit 6a6a3dc

Please sign in to comment.