Skip to content

Commit

Permalink
Move configContent css to not apply to recommendedcard
Browse files Browse the repository at this point in the history
  • Loading branch information
Jondyr committed Aug 7, 2024
1 parent a50ed17 commit 1412130
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export const ConfigContent = (): React.ReactElement => {
.some((item, index) => item.id === bpmnDetails.id && index === 0);

return (
<div className={classes.configContent}>
<>
<StudioSectionHeader
icon={<ConfigIcon taskType={bpmnDetails.taskType} />}
heading={{
Expand All @@ -52,7 +52,7 @@ export const ConfigContent = (): React.ReactElement => {
{bpmnDetails.metadata?.justAdded ? (
<NewNameRecommendation />
) : (
<>
<div className={classes.configContent}>
<EditTaskId />
<StudioDisplayTile
label={t('process_editor.configuration_panel_name_label')}
Expand Down Expand Up @@ -93,8 +93,8 @@ export const ConfigContent = (): React.ReactElement => {
</Accordion.Content>
</Accordion.Item>
</Accordion>
</>
</div>
)}
</div>
</>
);
};

0 comments on commit 1412130

Please sign in to comment.