Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -405,7 +405,16 @@ export const CompactObjectPropertiesEditor = ({
<Object2d style={styles.icon} />
)}
<Text size="body" noMargin>
<Trans>{objectMetadata.getFullName()}</Trans>
<Trans>{objectMetadata.getFullName()} - </Trans>
</Text>
<Text
allowSelection
displayInlineAsSpan
noMargin
size="body"
noMargin
>
{object.getName()}
</Text>
{helpLink && (
<IconButton
Expand All @@ -419,11 +428,6 @@ export const CompactObjectPropertiesEditor = ({
)}
</LineStackLayout>
</LineStackLayout>
<CompactTextField
value={object.getName()}
onChange={() => {}}
disabled
/>
</ColumnStackLayout>
<TopLevelCollapsibleSection
title={<Trans>Properties</Trans>}
Expand Down