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
path: root/src
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2020-02-07 14:52:35 +0300
committerChristoph Wurst <christoph@winzerhof-wurst.at>2020-02-10 15:32:34 +0300
commit90a90dd24d21da7130cee7a514ca348f0de1fb24 (patch)
tree437ef244f08481e3970684e07901169f47b25712 /src
parentec940371233c2c3630d5fb48e65e9e75203cbbc1 (diff)
Add a lazy structure analyzation to get the attachments icon back
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'src')
-rw-r--r--src/components/Envelope.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/Envelope.vue b/src/components/Envelope.vue
index aa86cb0b3..f191da7d8 100644
--- a/src/components/Envelope.vue
+++ b/src/components/Envelope.vue
@@ -18,7 +18,7 @@
</div>
<div class="app-content-list-item-line-two" :title="data.subject">
<span v-if="data.flags.answered" class="icon-reply" />
- <span v-if="data.flags.hasAttachments" class="icon-public icon-attachment" />
+ <span v-if="data.flags.hasAttachments === true" class="icon-public icon-attachment" />
<span v-if="draft" class="draft">
<em>{{ t('mail', 'Draft: ') }}</em>
</span>