Skip to content

Commit e75b4b1

Browse files
committed
Merge remote-tracking branch 'origin/migrate-quick-group' into migrate-quick-group
2 parents 8e808ab + 69607d4 commit e75b4b1

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

x-pack/plugins/cloud_security_posture/public/pages/compliance_dashboard/compliance_dashboard.tsx

+1
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ export const ComplianceDashboard = () => {
3737
pageHeader={{
3838
pageTitle: TEXT.CLOUD_POSTURE,
3939
}}
40+
restrictWidth={1600}
4041
>
4142
<CompliancePage />
4243
</CspPageTemplate>

x-pack/plugins/cloud_security_posture/public/pages/compliance_dashboard/dashboard_sections/benchmarks_section.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ export const BenchmarksSection = () => {
8787
<EuiSpacer size="xs" />
8888
<EuiText size="xs" color="subdued" style={{ textAlign: 'center' }}>
8989
<EuiIcon type="clock" />
90-
{moment(cluster.meta.lastUpdate).fromNow()}
90+
{` ${moment(cluster.meta.lastUpdate).fromNow()}`}
9191
</EuiText>
9292
</EuiFlexItem>
9393
<EuiFlexItem grow={false}>

x-pack/plugins/cloud_security_posture/public/pages/compliance_dashboard/translations.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ export const CLOUD_POSTURE_SCORE = i18n.translate('xpack.csp.cloud_posture_score
1515
defaultMessage: 'Cloud Posture Score',
1616
});
1717

18-
export const RISKS = i18n.translate('xpack.csp.risks', {
19-
defaultMessage: 'Risks',
18+
export const RISKS = i18n.translate('xpack.csp.complianceDashboard.failedFindingsChartLabel', {
19+
defaultMessage: 'Failed Findings',
2020
});
2121

2222
export const OPEN_CASES = i18n.translate('xpack.csp.open_cases', {

0 commit comments

Comments
 (0)