Skip to content

Commit

Permalink
[ML] Fixes font size of headings in anomalies table expanded row (ela…
Browse files Browse the repository at this point in the history
  • Loading branch information
peteharverson committed Oct 23, 2018
1 parent e2a379c commit 8bd91a3
Showing 1 changed file with 6 additions and 6 deletions.
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

0 comments on commit 8bd91a3

Please sign in to comment.