diff --git a/frontend/src/components/ListBulkActions.vue b/frontend/src/components/ListBulkActions.vue index 84af5b2f..b58c02e6 100644 --- a/frontend/src/components/ListBulkActions.vue +++ b/frontend/src/components/ListBulkActions.vue @@ -195,7 +195,7 @@ function bulkActions(selections, unselectAll) { }) } - if (!props.options.hideDelete) { + if (props.doctype === 'CRM Lead') { actions.push({ label: __('Convert to Deal'), onClick: () => convertToDeal(selections, unselectAll),