Skip to content

Commit

Permalink
[4086] Wrap property sections in a div for testing
Browse files Browse the repository at this point in the history
Bug: #4086
Signed-off-by: Michaël Charfadi <[email protected]>
  • Loading branch information
mcharfadi authored and sbegaudeau committed Oct 11, 2024
1 parent 148e0eb commit 2040b3c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -264,5 +264,5 @@ export const PropertySection = ({ editingContextId, formId, widget, readOnly }:
console.error(`Unsupported widget type ${widget.__typename}`);
}
}
return propertySection;
return <div className="PropertySection">{propertySection}</div>;
};

0 comments on commit 2040b3c

Please sign in to comment.