Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/tasks.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRaimund Schlüßler <raimund.schluessler@mailbox.org>2020-02-12 00:44:14 +0300
committerRaimund Schlüßler <raimund.schluessler@mailbox.org>2020-02-12 00:44:14 +0300
commitcbc1eb78b1728b245a31f0fd9bfa36538efb3a2b (patch)
tree1bbe8f7bb911689ec1ca7b6c8979ca7d71e4b67e /src/components
parenta5904ab46199248c94abff5c7d7f8626de0d8406 (diff)
Fix uncaught exception: object error on navigation
Signed-off-by: Raimund Schlüßler <raimund.schluessler@mailbox.org>
Diffstat (limited to 'src/components')
-rw-r--r--src/components/TaskBody.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/TaskBody.vue b/src/components/TaskBody.vue
index 82e03bda..c19656ea 100644
--- a/src/components/TaskBody.vue
+++ b/src/components/TaskBody.vue
@@ -204,7 +204,7 @@ export default {
try {
return this.collectionString.split('-')[1]
} catch {
- return null
+ return undefined
}
},