Skip to content

Commit 7b0bfb0

Browse files
committed
Merge branch 'hotfix-v0.26.0' of github.com:devtron-labs/devtron-fe-common-lib into chore/rc-27-sync
2 parents 310651f + f19f333 commit 7b0bfb0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Common/RJSF/templates/ObjectFieldTemplate.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ export const ObjectFieldTemplate = (props: ObjectFieldTemplateProps<any, RJSFFor
134134
schema.properties && !hasAdditionalProperties && idSchema.$id !== 'root'
135135
? 'dc__border-left pl-12'
136136
: ''
137-
} flexbox-col dc__gap-8`}
137+
} ${idSchema.$id === 'root' ? 'dc__separated-flexbox dc__separated-flexbox--vertical' : 'flexbox-col dc__gap-8'}`}
138138
>
139139
<Field {...props} />
140140
</div>

src/Common/RJSF/templates/TitleField.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export const TitleField = ({
2323
required,
2424
description,
2525
}: TitleFieldProps & Partial<Record<'description', string>>) => (
26-
<legend className="fs-13 fw-6 cn-9 lh-20 dc__no-border py-9 mb-0" id={id}>
26+
<legend className="fs-13 fw-6 cn-9 lh-20 dc__no-border pb-9 mb-0" id={id}>
2727
<Tooltip alwaysShowTippyOnHover={!!description} content={description}>
2828
<span className={`${description ? 'text-underline-dashed-300' : ''}`}>{title}</span>
2929
</Tooltip>

0 commit comments

Comments
 (0)