Skip to content

Commit

Permalink
revert back capture test changes
Browse files Browse the repository at this point in the history
  • Loading branch information
vadimkibana committed Aug 13, 2023
1 parent 8179be2 commit f5d5e2f
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ import {
EuiPage,
EuiPageHeader,
EuiPageBody,
EuiPageTemplate,
EuiPageSection,
EuiPageContent_Deprecated as EuiPageContent,
EuiPageContentBody_Deprecated as EuiPageContentBody,
} from '@elastic/eui';

import { TestImageA } from '../components';
Expand Down Expand Up @@ -62,7 +62,7 @@ export const CaptureTest: FunctionComponent = () => {
return (
<EuiPage>
<EuiPageBody>
<EuiPageTemplate.Section>
<EuiPageContent>
<EuiPageHeader>
<EuiFlexGroup alignItems="center" justifyContent="flexEnd">
<EuiFlexItem grow={false}>
Expand All @@ -75,16 +75,16 @@ export const CaptureTest: FunctionComponent = () => {
</EuiFlexItem>
</EuiFlexGroup>
</EuiPageHeader>
<EuiPageSection>
<EuiPageContentBody>
<EuiSpacer />
<EuiTabbedContent
tabs={tabs}
initialSelectedTab={
tabToRender ? tabs.find((tab) => tab.id === tabToRender) : undefined
}
/>
</EuiPageSection>
</EuiPageTemplate.Section>
</EuiPageContentBody>
</EuiPageContent>
</EuiPageBody>
</EuiPage>
);
Expand Down

0 comments on commit f5d5e2f

Please sign in to comment.