From fc8963da990c8dcae1c85faf789e5aa859812f9e Mon Sep 17 00:00:00 2001 From: gsinghpal Date: Wed, 27 May 2026 13:53:38 -0400 Subject: [PATCH] fix(fusion_helpdesk_central): findings + summary textareas span full width MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The Findings and Summary fields rendered at half-width because their enclosing defaulted to col="2" — Odoo reserves a label column even when the field has nolabel="1", so the textarea was squeezed into the right half of the dialog while the left half sat empty. Switch both groups to col="1" so the field uses the entire group width. Also tag both fields with widget="text" explicitly (it was inferred from the Text field type, but being explicit makes the intent obvious to anyone reading the view) and migrate the button row to a flex div so the helper text aligns with the button vertical center. Bumps fusion_helpdesk_central to 19.0.2.3.1. --- fusion_helpdesk_central/__manifest__.py | 2 +- .../views/engagement_wizard_views.xml | 18 ++++++++++++++---- 2 files changed, 15 insertions(+), 5 deletions(-) diff --git a/fusion_helpdesk_central/__manifest__.py b/fusion_helpdesk_central/__manifest__.py index 8b3fdcfb..a97c12f1 100644 --- a/fusion_helpdesk_central/__manifest__.py +++ b/fusion_helpdesk_central/__manifest__.py @@ -3,7 +3,7 @@ # License OPL-1 { 'name': 'Fusion Helpdesk Central — Client API Keys', - 'version': '19.0.2.3.0', + 'version': '19.0.2.3.1', 'category': 'Productivity', 'summary': 'Admin UI on the central Odoo for issuing per-client API ' 'keys used by fusion_helpdesk client deployments.', diff --git a/fusion_helpdesk_central/views/engagement_wizard_views.xml b/fusion_helpdesk_central/views/engagement_wizard_views.xml index a082d799..97c5a3f5 100644 --- a/fusion_helpdesk_central/views/engagement_wizard_views.xml +++ b/fusion_helpdesk_central/views/engagement_wizard_views.xml @@ -43,21 +43,31 @@ - + + - -
+ +