Fix undefined getter for related tasks
continuous-integration/drone/push Build is passing Details

This commit is contained in:
kolaente 2020-05-09 23:32:04 +02:00
parent c2135338d3
commit 2ca8eef4f7
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@
<router-link :to="{ name: $route.name, params: { id: t.id } }">
<span class="tasktext" :class="{ 'done': t.done}">
<span v-if="t.listId !== listId" class="different-list" v-tooltip="'This task belongs to a different list.'">
{{ $store.getters['namespaces/getListById'](t.listId).title }} >
{{ $store.getters['namespaces/getListById'](t.listId) === null ? '' : $store.getters['namespaces/getListById'](t.listId).title }} >
</span>
{{t.text}}
</span>