summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/components/ContactDetails/ContactDetailsAvatar.vue10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/components/ContactDetails/ContactDetailsAvatar.vue b/src/components/ContactDetails/ContactDetailsAvatar.vue
index 703a3d4f..0748b0f3 100644
--- a/src/components/ContactDetails/ContactDetailsAvatar.vue
+++ b/src/components/ContactDetails/ContactDetailsAvatar.vue
@@ -52,17 +52,17 @@
@close="toggleModal">
<template #actions>
<ActionButton v-if="!isReadOnly" icon="icon-upload" @click="selectFileInput">
- {{ t('contacts', 'Upload a new picture') }}
+ {{ t('contacts', 'Upload new picture') }}
</ActionButton>
- <ActionButton v-if="!isReadOnly" icon="icon-picture" @click="selectFilePicker">
+ <ActionButton v-if="!isReadOnly" icon="icon-folder" @click="selectFilePicker">
{{ t('contacts', 'Choose from files') }}
</ActionButton>
- <ActionButton v-if="!isReadOnly" icon="icon-delete" @click="removePhoto">
- {{ t('contacts', 'Delete picture') }}
- </ActionButton>
<ActionLink :href="`${contact.url}?photo`" icon="icon-download" target="_blank">
{{ t('contacts', 'Download picture') }}
</ActionLink>
+ <ActionButton v-if="!isReadOnly" icon="icon-delete" @click="removePhoto">
+ {{ t('contacts', 'Delete picture') }}
+ </ActionButton>
</template>
<img ref="img"
:src="contact.photoUrl"