Skip to content
Snippets Groups Projects
Commit 40f157e5 authored by thsh-odoo's avatar thsh-odoo Committed by Aurélien Warnon
Browse files

[FIX] crm: improve layout of conversion modal


When converting a lead to an opportunity and merging with existing
opportunities, the list view showing opportunities is very tiny.

This is caused by the field not having the correct colspan, as its label is
hidden with the "nolabel" attribute.

This commit fixes it by assigning a colpan of 2.

Task-3179173

closes odoo/odoo#119708

X-original-commit: 6a003a12
Signed-off-by: default avatarWarnon Aurélien (awa) <awa@odoo.com>
parent c75b35b2
No related branches found
No related tags found
No related merge requests found
......@@ -14,7 +14,7 @@
</group>
<group string="Opportunities" attrs="{'invisible': [('name', '!=', 'merge')]}">
<field name="lead_id" invisible="1"/>
<field name="duplicated_lead_ids" nolabel="1">
<field name="duplicated_lead_ids" colspan="2" nolabel="1">
<tree>
<field name="create_date" widget="date"/>
<field name="name"/>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment