Skip to content

Commit

Permalink
BUG: When a Case Template has no tasks the UI would not render the li…
Browse files Browse the repository at this point in the history
…st properly. Fix for reflexsoar/reflex-api#229
  • Loading branch information
n3tsurge committed Jul 28, 2022
1 parent 82490c2 commit 036463f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/views/CaseTemplateList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
</template>
<template #tasks="{ item }">
<td>
{{ item.tasks.length }}
{{ item.tasks ? item.tasks.length : 0 }}
</td>
</template>
<template #tlp="{ item }">
Expand Down

0 comments on commit 036463f

Please sign in to comment.