summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorgreta <gretadoci@gmail.com>2022-06-29 16:31:02 +0200
committergreta <gretadoci@gmail.com>2022-06-29 16:31:02 +0200
commit0321d26248ba1021006cf810e089d3557e506e2d (patch)
tree760f193cfdbb1ba2d10eea65d2f94225c64c4863
parentb11a77e5d3c843a80d0c5e4a1ebb0290bf1b3809 (diff)
Migrate contact details icons to material design iconsmigrate/contacts-details
Signed-off-by: greta <gretadoci@gmail.com>
-rw-r--r--src/components/Properties/PropertyActions.vue7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/components/Properties/PropertyActions.vue b/src/components/Properties/PropertyActions.vue
index 59b29f33..c604de86 100644
--- a/src/components/Properties/PropertyActions.vue
+++ b/src/components/Properties/PropertyActions.vue
@@ -22,7 +22,10 @@
<template>
<Actions class="property__actions">
- <ActionButton icon="icon-delete" @click="deleteProperty">
+ <ActionButton @click="deleteProperty">
+ <template #icon>
+ <IconDelete :size="20" />
+ </template>
{{ t('contacts', 'Delete') }}
</ActionButton>
<Actions :is="action"
@@ -34,6 +37,7 @@
<script>
import Actions from '@nextcloud/vue/dist/Components/Actions'
import ActionButton from '@nextcloud/vue/dist/Components/ActionButton'
+import IconDelete from 'vue-material-design-icons/Delete'
export default {
name: 'PropertyActions',
@@ -41,6 +45,7 @@ export default {
components: {
Actions,
ActionButton,
+ IconDelete,
},
props: {