From 2040b3c018d99e4b4f39c84bd1f7362f673c16d0 Mon Sep 17 00:00:00 2001 From: Michael Charfadi Date: Thu, 10 Oct 2024 10:56:24 +0200 Subject: [PATCH] [4086] Wrap property sections in a div for testing MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bug: https://github.com/eclipse-sirius/sirius-web/issues/4086 Signed-off-by: Michaƫl Charfadi --- CHANGELOG.adoc | 1 + .../src/propertysections/PropertySection.tsx | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.adoc b/CHANGELOG.adoc index 6deed360f2..9246948191 100644 --- a/CHANGELOG.adoc +++ b/CHANGELOG.adoc @@ -113,6 +113,7 @@ This will allow specifier to create images that fir perfectly in the project tem - https://github.com/eclipse-sirius/sirius-web/issues/3816[#3816] [form] Make EMF default form support Integer null value - https://github.com/eclipse-sirius/sirius-web/issues/3826[#3826] [form] Make EMF default form support attributes with a date - https://github.com/eclipse-sirius/sirius-web/issues/2163[#2163] [form] Make EMF default form support non changeable features +- https://github.com/eclipse-sirius/sirius-web/issues/4086[#4086] [form] Wrap widget returned by property section in a div with a specific classname == v2024.9.0 diff --git a/packages/forms/frontend/sirius-components-forms/src/propertysections/PropertySection.tsx b/packages/forms/frontend/sirius-components-forms/src/propertysections/PropertySection.tsx index c646ba7b71..2b608daf67 100644 --- a/packages/forms/frontend/sirius-components-forms/src/propertysections/PropertySection.tsx +++ b/packages/forms/frontend/sirius-components-forms/src/propertysections/PropertySection.tsx @@ -264,5 +264,5 @@ export const PropertySection = ({ editingContextId, formId, widget, readOnly }: console.error(`Unsupported widget type ${widget.__typename}`); } } - return propertySection; + return
{propertySection}
; };