diff --git a/frontend/src/components/tasks/partials/attachments.vue b/frontend/src/components/tasks/partials/attachments.vue index 03c6994c6..36137d0be 100644 --- a/frontend/src/components/tasks/partials/attachments.vue +++ b/frontend/src/components/tasks/partials/attachments.vue @@ -27,89 +27,91 @@ v-if="attachments.length > 0" class="files" > - - -
- {{ a.file.name }} - - {{ $t('task.attachment.usedAsCover') }} - -
-
-

- - - {{ formatDateSince(a.created) }} + + + + + +
+ + +
+ {{ a.file.name }} + + {{ $t('task.attachment.usedAsCover') }} - - - - {{ getHumanSize(a.file.size) }} - - - {{ a.file.mime }} - -

- -

- - {{ $t('misc.download') }} - - - {{ $t('task.attachment.copyUrl') }} - - - {{ $t('misc.delete') }} - - - {{ - task.coverImageAttachmentId === a.id - ? $t('task.attachment.unsetAsCover') - : $t('task.attachment.setAsCover') - }} - -

-
- + +
+

+ + + {{ formatDateSince(a.created) }} + + + + + {{ getHumanSize(a.file.size) }} + + + {{ a.file.mime }} + +

+

+ + {{ $t('misc.download') }} + + + {{ $t('task.attachment.copyUrl') }} + + + {{ $t('misc.delete') }} + + + {{ + task.coverImageAttachmentId === a.id + ? $t('task.attachment.unsetAsCover') + : $t('task.attachment.setAsCover') + }} + +

+
+

+ + \ No newline at end of file