diff --git a/frontend/src/pages/Deal.vue b/frontend/src/pages/Deal.vue
index 0790809c..58722b3c 100644
--- a/frontend/src/pages/Deal.vue
+++ b/frontend/src/pages/Deal.vue
@@ -129,6 +129,14 @@
: 'Upload image',
onClick: openFileSelector,
},
+ {
+ icon: 'trash-2',
+ label: 'Remove image',
+ onClick: () => {
+ deal.data.organization_logo = ''
+ updateDeal('organization_logo', '')
+ },
+ },
]"
>
@@ -565,7 +573,7 @@ const detailSections = computed(() => {
label: 'Contacts',
opened: true,
fields: [
- {
+ {
label: 'Salutation',
type: 'link',
name: 'salutation',
diff --git a/frontend/src/pages/Lead.vue b/frontend/src/pages/Lead.vue
index 4e97f889..8088cc31 100644
--- a/frontend/src/pages/Lead.vue
+++ b/frontend/src/pages/Lead.vue
@@ -127,6 +127,14 @@
label: lead.data.image ? 'Change photo' : 'Upload photo',
onClick: openFileSelector,
},
+ {
+ icon: 'trash-2',
+ label: 'Remove photo',
+ onClick: () => {
+ lead.data.image = ''
+ updateLead('image', '')
+ },
+ },
]"
>