Skip to content

Commit ac1a724

Browse files
authored
fix: fix due tasks not being displayed on dashboard (monicahq/chandler#351)
1 parent e53b7ac commit ac1a724

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

resources/js/Pages/Vault/Dashboard/Partials/DueTasks.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
</h3>
2121

2222
<!-- list of tasks -->
23-
<div v-if="data.tasks.length > 0">
23+
<div v-if="data.tasks">
2424
<ul class="mb-4 rounded-lg border border-gray-200 dark:border-gray-800 dark:bg-gray-900">
2525
<li
2626
v-for="task in data.tasks"

0 commit comments

Comments
 (0)