diff options
author | Alexandre Guiot--Valentin <contact@alexandregv.fr> | 2019-12-26 12:35:51 +0000 |
---|---|---|
committer | Gary Kim <gary@garykim.dev> | 2019-12-26 21:17:50 +0800 |
commit | ab50fee1e53b24c7b765a9711f1f774ab9a19057 (patch) | |
tree | 5032e83742607dac934e86c51abad3c4100ff0ea /apps/files_sharing/src | |
parent | dd813842830ce1c6d6c6a9b7a7a9a277554b2e3d (diff) | |
download | nextcloud-server-ab50fee1e53b24c7b765a9711f1f774ab9a19057.tar.gz nextcloud-server-ab50fee1e53b24c7b765a9711f1f774ab9a19057.zip |
Change icon-delete to icon-close in others locations
Signed-off-by: Alexandre Guiot--Valentin <contact@alexandregv.fr>
Signed-off-by: Gary Kim <gary@garykim.dev>
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 |
2 files changed, 2 insertions, 2 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> |