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}
; };