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

github.com/nextcloud/mail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Wurst <ChristophWurst@users.noreply.github.com>2022-06-08 13:29:40 +0300
committerGitHub <noreply@github.com>2022-06-08 13:29:40 +0300
commite3f17d93669619c0000645f18bfcbf6ee2f06925 (patch)
tree0ffcdb11de6bda2799cc1879f45e23fea553bb1c
parentaf2869ff30ecee2a404c488691ff5aa22b7efc7c (diff)
parentc5786a34345a12c4b3607e5aadca49a8b5ac03be (diff)
Merge pull request #6687 from nextcloud/add/no-subject-thread
Render default 'no subject' when a thread has no subject
-rw-r--r--src/components/Thread.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/Thread.vue b/src/components/Thread.vue
index 15dea0cdb..1f566cd8c 100644
--- a/src/components/Thread.vue
+++ b/src/components/Thread.vue
@@ -126,7 +126,7 @@ export default {
console.warn('thread is empty')
return ''
}
- return thread[0].subject
+ return thread[0].subject || this.t('mail', 'No subject')
},
},
watch: {