diff --git a/CHANGELOG.adoc b/CHANGELOG.adoc index 86453e671e..e23ad39232 100644 --- a/CHANGELOG.adoc +++ b/CHANGELOG.adoc @@ -97,6 +97,7 @@ never, always and if_children (to display the separator only if children exist). - https://github.com/eclipse-sirius/sirius-web/issues/4064[#4064] [sirius-web] Ensure that project template images fill the whole content part of the card. Project template images will now have a predictable size of 150px by 110px. This will allow specifier to create images that fir perfectly in the project template card. +- 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}
; };