Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ML] Fixes font size of headings in anomalies table expanded row #24390

Merged
merged 1 commit into from
Oct 23, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ export class AnomalyDetails extends Component {
return (
<React.Fragment>
<EuiText size="xs">
<h5>Description</h5>
<h4>Description</h4>
{anomalyDescription}
</EuiText>
{(mvDescription !== undefined) &&
Expand All @@ -236,11 +236,11 @@ export class AnomalyDetails extends Component {
const isInterimResult = _.get(this.props.anomaly, 'source.is_interim', false);
return (
<React.Fragment>
<EuiText>
<EuiText size="xs">
{this.props.isAggregatedData === true ? (
<h5>Details on highest severity anomaly</h5>
<h4>Details on highest severity anomaly</h4>
) : (
<h5>Anomaly details</h5>
<h4>Anomaly details</h4>
)}
{isInterimResult === true &&
<React.Fragment>
Expand Down Expand Up @@ -287,8 +287,8 @@ export class AnomalyDetails extends Component {
return (
<React.Fragment>
<EuiSpacer size="m" />
<EuiText>
<h5>Influencers</h5>
<EuiText size="xs">
<h4>Influencers</h4>
</EuiText>
<EuiDescriptionList
type="column"
Expand Down