From 6b40948d77b3287a12b2d2f3da050578dc658735 Mon Sep 17 00:00:00 2001 From: Walter Rafelsberger Date: Wed, 9 Oct 2019 10:33:58 +0200 Subject: [PATCH] [transform] Change EuiHighlight to just strong. --- .../legacy/plugins/ml/public/components/stats_bar/stat.tsx | 5 +---- .../transform_management/components/stats_bar/stat.tsx | 5 +---- 2 files changed, 2 insertions(+), 8 deletions(-) diff --git a/x-pack/legacy/plugins/ml/public/components/stats_bar/stat.tsx b/x-pack/legacy/plugins/ml/public/components/stats_bar/stat.tsx index c038554797e66..9de287d54a720 100644 --- a/x-pack/legacy/plugins/ml/public/components/stats_bar/stat.tsx +++ b/x-pack/legacy/plugins/ml/public/components/stats_bar/stat.tsx @@ -6,9 +6,6 @@ import React, { FC } from 'react'; -// @ts-ignore -import { EuiHighlight } from '@elastic/eui'; - export interface StatsBarStat { label: string; value: string | number; @@ -21,7 +18,7 @@ interface StatProps { export const Stat: FC = ({ stat }) => { return ( - {stat.label}: {stat.value} + {stat.label}: {stat.value} ); }; diff --git a/x-pack/legacy/plugins/transform/public/app/sections/transform_management/components/stats_bar/stat.tsx b/x-pack/legacy/plugins/transform/public/app/sections/transform_management/components/stats_bar/stat.tsx index 9bea7866bfa5e..4f0f360779e04 100644 --- a/x-pack/legacy/plugins/transform/public/app/sections/transform_management/components/stats_bar/stat.tsx +++ b/x-pack/legacy/plugins/transform/public/app/sections/transform_management/components/stats_bar/stat.tsx @@ -6,9 +6,6 @@ import React, { FC } from 'react'; -// @ts-ignore -import { EuiHighlight } from '@elastic/eui'; - export interface StatsBarStat { label: string; value: string | number; @@ -21,7 +18,7 @@ interface StatProps { export const Stat: FC = ({ stat }) => { return ( - {stat.label}: {stat.value} + {stat.label}: {stat.value} ); };