Skip to content

Commit

Permalink
[BUG FIX] [MER-4021] Advanced Author: Attempting to navigate to a sub…
Browse files Browse the repository at this point in the history
… screen with full clipboard results in a page load error (#5259)
  • Loading branch information
dtiwarATS authored Nov 19, 2024
1 parent 2b6adbd commit 61de5e4
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -332,10 +332,10 @@ export const PartPropertyEditor: React.FC<Props> = ({

if (!partDef) return null;

const selectPartType = selectedPartDef?.type || '';

return (
<div
className={`component-tab p-3 overflow-hidden part-property-editor ${selectedPartDef.type}`}
>
<div className={`component-tab p-3 overflow-hidden part-property-editor ${selectPartType}`}>
{selectedPartDef && partEditMode === 'expert' && (
<ButtonToolbar aria-label="Component Tools">
<ButtonGroup className="me-2" aria-label="First group">
Expand Down

0 comments on commit 61de5e4

Please sign in to comment.