summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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: {