Skip to content

Commit

Permalink
[4086] Wrap PropertySection in a div
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 committed Oct 10, 2024
1 parent 86b5b7a commit 8ed847b
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 @@ -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
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 8ed847b

Please sign in to comment.