diff options
author | Alexandre GV <contact@alexandregv.fr> | 2019-12-25 09:33:04 +0100 |
---|---|---|
committer | Alexandre Guiot--Valentin <contact@alexandregv.fr> | 2019-12-25 08:51:19 +0000 |
commit | d8ba5e5d57f7b3be908b99e36fd0d30266095fa6 (patch) | |
tree | 9dd111467fd81f3148416be9e72ec1fe71bceaa6 | |
parent | f0df31081ae87cae667e236d1f5cc20331a71a84 (diff) | |
download | nextcloud-server-d8ba5e5d57f7b3be908b99e36fd0d30266095fa6.tar.gz nextcloud-server-d8ba5e5d57f7b3be908b99e36fd0d30266095fa6.zip |
Clarify "Delete share" action in sharing sidebar
- change "Delete share" to "Unshare"
- change icon-delete to icon-close
Signed-off-by: Alexandre Guiot--Valentin <contact@alexandregv.fr>
-rw-r--r-- | apps/files_sharing/src/components/SharingEntryLink.vue | 4 |
1 files changed, 2 insertions, 2 deletions
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" |