Skip to content

Commit

Permalink
[transform] Change EuiHighlight to just strong.
Browse files Browse the repository at this point in the history
  • Loading branch information
walterra committed Oct 9, 2019
1 parent 1b34e00 commit 6b40948
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,6 @@

import React, { FC } from 'react';

// @ts-ignore
import { EuiHighlight } from '@elastic/eui';

export interface StatsBarStat {
label: string;
value: string | number;
Expand All @@ -21,7 +18,7 @@ interface StatProps {
export const Stat: FC<StatProps> = ({ stat }) => {
return (
<span className="stat">
<span>{stat.label}</span>: <EuiHighlight>{stat.value}</EuiHighlight>
<span>{stat.label}</span>: <strong>{stat.value}</strong>
</span>
);
};
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,6 @@

import React, { FC } from 'react';

// @ts-ignore
import { EuiHighlight } from '@elastic/eui';

export interface StatsBarStat {
label: string;
value: string | number;
Expand All @@ -21,7 +18,7 @@ interface StatProps {
export const Stat: FC<StatProps> = ({ stat }) => {
return (
<span className="transformStat">
<span>{stat.label}</span>: <EuiHighlight>{stat.value}</EuiHighlight>
<span>{stat.label}</span>: <strong>{stat.value}</strong>
</span>
);
};

0 comments on commit 6b40948

Please sign in to comment.