Skip to content

Commit

Permalink
Fix missing object name field in some object editors (#6506)
Browse files Browse the repository at this point in the history
  • Loading branch information
D8H authored Apr 5, 2024
1 parent 12813c9 commit 007cc48
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions newIDE/app/src/ObjectEditor/Editors/ObjectPropertiesEditor.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ const ObjectPropertiesEditor = (props: Props) => {
project,
resourceManagementProps,
unsavedChanges,
renderObjectNameField,
} = props;

// TODO: Workaround a bad design of ObjectJsImplementation. When getProperties
Expand Down Expand Up @@ -53,6 +54,7 @@ const ObjectPropertiesEditor = (props: Props) => {
<I18n>
{({ i18n }) => (
<ColumnStackLayout noMargin>
{renderObjectNameField && renderObjectNameField()}
{tutorialIds.map(tutorialId => (
<DismissableTutorialMessage
key={tutorialId}
Expand Down

0 comments on commit 007cc48

Please sign in to comment.