diff options
Diffstat (limited to 'apps/files_sharing/src/components/SharingEntryLink.vue')
-rw-r--r-- | apps/files_sharing/src/components/SharingEntryLink.vue | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/apps/files_sharing/src/components/SharingEntryLink.vue b/apps/files_sharing/src/components/SharingEntryLink.vue index afeaee06bde..4501d67cbbb 100644 --- a/apps/files_sharing/src/components/SharingEntryLink.vue +++ b/apps/files_sharing/src/components/SharingEntryLink.vue @@ -247,7 +247,14 @@ @update:value="debounceQueueUpdate('note')" /> </template> - <components :is="action" v-for="(action, index) in externalActions" :key="index" /> + <!-- external sharing via url (social...) --> + <ActionLink v-for="({icon, url, name}, index) in externalActions" + :key="index" + :href="url(shareLink)" + :icon="icon" + target="_blank"> + {{ name }} + </ActionLink> <ActionButton icon="icon-delete" :disabled="saving" @click.prevent="onDelete"> {{ t('files_sharing', 'Delete share') }} |