Skip to content

Commit

Permalink
entity name now highlighted in extension panel
Browse files Browse the repository at this point in the history
  • Loading branch information
Raynesz committed Dec 22, 2022
1 parent 8dc709d commit e4c4060
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/components/editor/ExtensionProperties.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,9 @@ const Specialize = (props) => {
</select>
</div>
<hr />
<div className="extension-group">{props.parent.name} specializes at:</div>
<div className="extension-group">
<span style={{ fontWeight: "bold" }}>{props.parent.name}</span> specializes at:
</div>
</>
);
};
Expand All @@ -114,7 +116,9 @@ const Union = (props) => {
</select>
</div>
<hr />
<div className="extension-group">{props.parent.name} is a Union of:</div>
<div className="extension-group">
<span style={{ fontWeight: "bold" }}>{props.parent.name}</span> is a Union of:
</div>
</>
);
};
Expand Down

0 comments on commit e4c4060

Please sign in to comment.