Skip to content

Commit

Permalink
Small fix
Browse files Browse the repository at this point in the history
  • Loading branch information
akucharska committed Oct 19, 2023
1 parent 8f9385c commit 3fbf35f
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/shared/ResourceForm/components/ResourceForm.js
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,10 @@ export function ResourceForm({
)}
<form ref={formElementRef} onSubmit={onSubmit || createResource}>
<Form
className={classnames('resource-form', className)}
className={classnames(
'resource-form ui5-content-density-compact',
className,
)}
columnsL={1}
columnsM={1}
columnsS={1}
Expand All @@ -164,7 +167,6 @@ export function ResourceForm({
labelSpanS={0}
labelSpanXL={0}
as="div"
className="ui5-content-density-compact"
>
{mode === ModeSelector.MODE_SIMPLE && (
<FormItem>
Expand Down

0 comments on commit 3fbf35f

Please sign in to comment.