Skip to content

Commit

Permalink
Merge pull request #1948 from metalice/CNV-40162-fix-css-checkup-yaml
Browse files Browse the repository at this point in the history
CNV-40162: Fix css checkups yaml's
  • Loading branch information
openshift-merge-bot[bot] committed May 16, 2024
2 parents af8fd1d + a5bcd32 commit a2eb1e4
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,11 @@ const CheckupsNetworkDetailsPage = () => {
<CheckupsDetailsPageHistory error={error} jobs={jobMatches} loading={loading} />
</PageSection>
</Tab>
<Tab eventKey={1} title={<TabTitleText>{t('YAML')}</TabTitleText>}>
<Tab
className="CheckupsNetworkDetailsPage--yaml"
eventKey={1}
title={<TabTitleText>{t('YAML')}</TabTitleText>}
>
<ResourceYAMLEditor initialResource={configMap} />
</Tab>
</Tabs>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,9 @@
.pf-c-tab-content {
height: 100%;
}

.CheckupsNetworkDetailsPage {
&--yaml {
height: 100%;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,11 @@ const CheckupsStorageDetailsPage = () => {
<CheckupsDetailsPageHistory error={error} jobs={jobMatches} loading={loading} />
</PageSection>
</Tab>
<Tab eventKey={1} title={<TabTitleText>{t('YAML')}</TabTitleText>}>
<Tab
className="CheckupsStorageDetailsPage--yaml"
eventKey={1}
title={<TabTitleText>{t('YAML')}</TabTitleText>}
>
<ResourceYAMLEditor initialResource={configMap} />
</Tab>
</Tabs>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,9 @@
.pf-c-tab-content {
height: 100%;
}

.CheckupsStorageDetailsPage {
&--yaml {
height: 100%;
}
}

0 comments on commit a2eb1e4

Please sign in to comment.