diff options
author | John Molakvoæ <skjnldsv@users.noreply.github.com> | 2019-12-28 10:54:17 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-12-28 10:54:17 +0100 |
commit | 88a24d7d120fc30e3655f371d64fbdbe02a93241 (patch) | |
tree | d10853acda1aacf9d4cf980382fce33ff892db7c /apps/files_sharing/src | |
parent | c7b67ee4a6495b7624598b4d8f3214e9bf8f20e0 (diff) | |
parent | ab50fee1e53b24c7b765a9711f1f774ab9a19057 (diff) | |
download | nextcloud-server-88a24d7d120fc30e3655f371d64fbdbe02a93241.tar.gz nextcloud-server-88a24d7d120fc30e3655f371d64fbdbe02a93241.zip |
Clarify "Delete share" action in sharing sidebar (#18563)
Clarify "Delete share" action in sharing sidebar
Diffstat (limited to 'apps/files_sharing/src')
-rw-r--r-- | apps/files_sharing/src/components/SharingEntry.vue | 2 | ||||
-rw-r--r-- | apps/files_sharing/src/components/SharingEntryInherited.vue | 2 | ||||
-rw-r--r-- | apps/files_sharing/src/components/SharingEntryLink.vue | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/apps/files_sharing/src/components/SharingEntry.vue b/apps/files_sharing/src/components/SharingEntry.vue index a19d1331f61..ff6e8bcae77 100644 --- a/apps/files_sharing/src/components/SharingEntry.vue +++ b/apps/files_sharing/src/components/SharingEntry.vue @@ -121,7 +121,7 @@ </template> <ActionButton v-if="share.canDelete" - icon="icon-delete" + icon="icon-close" :disabled="saving" @click.prevent="onDelete"> {{ t('files_sharing', 'Unshare') }} diff --git a/apps/files_sharing/src/components/SharingEntryInherited.vue b/apps/files_sharing/src/components/SharingEntryInherited.vue index d0c75c817ce..7d56f4eac34 100644 --- a/apps/files_sharing/src/components/SharingEntryInherited.vue +++ b/apps/files_sharing/src/components/SharingEntryInherited.vue @@ -41,7 +41,7 @@ {{ t('files_sharing', 'Via folder') }} </ActionLink> <ActionButton v-if="share.canDelete" - icon="icon-delete" + icon="icon-close" @click.prevent="onDelete"> {{ t('files_sharing', 'Unshare') }} </actionbutton> diff --git a/apps/files_sharing/src/components/SharingEntryLink.vue b/apps/files_sharing/src/components/SharingEntryLink.vue index 7b86d9952ec..3c54a3f8aef 100644 --- a/apps/files_sharing/src/components/SharingEntryLink.vue +++ b/apps/files_sharing/src/components/SharingEntryLink.vue @@ -257,10 +257,10 @@ </ActionLink> <ActionButton v-if="share.canDelete" - icon="icon-delete" + icon="icon-close" :disabled="saving" @click.prevent="onDelete"> - {{ t('files_sharing', 'Delete share') }} + {{ t('files_sharing', 'Unshare') }} </ActionButton> <ActionButton v-if="!isEmailShareType && canReshare" class="new-share-link" |