Skip to content

Commit 9a94067

Browse files
lgestcclaude
andcommitted
[Cases] Remove extra gap between template and global fields in case view sidebar
Both were direct children of the xl-gutter flex column, causing an oversized gap. Wrapping them in a div makes them a single flex item. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 9f14620 commit 9a94067

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

x-pack/platform/plugins/shared/cases/public/components/case_view/components/case_view_activity.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -353,10 +353,10 @@ export const CaseViewActivity = ({
353353
onSubmit={onSubmitCustomField}
354354
/>
355355
{isTemplatesV2Enabled && (
356-
<>
356+
<div>
357357
<TemplateFields caseData={caseData} onUpdateField={onUpdateField} />
358358
<GlobalCaseFields caseData={caseData} onUpdateField={onUpdateField} />
359-
</>
359+
</div>
360360
)}
361361
</EuiFlexGroup>
362362
</EuiFlexItem>

0 commit comments

Comments
 (0)