summaryrefslogtreecommitdiffstats
path: root/apps/files_sharing/src/components/SharingEntryLink.vue
diff options
context:
space:
mode:
authorJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2020-07-20 12:30:35 +0200
committerJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2020-07-20 12:42:08 +0200
commit6fcd075730dbd63d5dbb69da0ca5983b51a7240e (patch)
tree3b91e443159f6322e9af53bf495c17bd76c0ab7b /apps/files_sharing/src/components/SharingEntryLink.vue
parentb2e3466005f8fec7a753b078871f54c9fd5debb8 (diff)
downloadnextcloud-server-6fcd075730dbd63d5dbb69da0ca5983b51a7240e.tar.gz
nextcloud-server-6fcd075730dbd63d5dbb69da0ca5983b51a7240e.zip
Use DOMContentLoaded and fix sharebymail loading issue
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'apps/files_sharing/src/components/SharingEntryLink.vue')
-rw-r--r--apps/files_sharing/src/components/SharingEntryLink.vue6
1 files changed, 4 insertions, 2 deletions
diff --git a/apps/files_sharing/src/components/SharingEntryLink.vue b/apps/files_sharing/src/components/SharingEntryLink.vue
index 67e5e4ae48d..7cf90280d94 100644
--- a/apps/files_sharing/src/components/SharingEntryLink.vue
+++ b/apps/files_sharing/src/components/SharingEntryLink.vue
@@ -26,7 +26,9 @@
:class="isEmailShareType ? 'icon-mail-white' : 'icon-public-white'"
class="sharing-entry__avatar" />
<div class="sharing-entry__desc">
- <h5 :title="title">{{ title }}</h5>
+ <h5 :title="title">
+ {{ title }}
+ </h5>
</div>
<!-- clipboard -->
@@ -410,7 +412,7 @@ export default {
}
if (this.share.label && this.share.label.trim() !== '') {
return t('files_sharing', 'Share link ({label})', {
- label: this.share.label.trim()
+ label: this.share.label.trim(),
})
}
if (this.isEmailShareType) {