From 329c235bc04b7c445c3b01cc09afa6ea609c7ad7 Mon Sep 17 00:00:00 2001 From: Nathan L Smith Date: Thu, 29 Oct 2020 18:52:12 -0500 Subject: [PATCH] remove annotations --- .../shared/charts/line_chart/index.tsx | 31 +++++++++---------- 1 file changed, 14 insertions(+), 17 deletions(-) diff --git a/x-pack/plugins/apm/public/components/shared/charts/line_chart/index.tsx b/x-pack/plugins/apm/public/components/shared/charts/line_chart/index.tsx index 659a7417e703f..52a12f7c9b4b1 100644 --- a/x-pack/plugins/apm/public/components/shared/charts/line_chart/index.tsx +++ b/x-pack/plugins/apm/public/components/shared/charts/line_chart/index.tsx @@ -113,23 +113,20 @@ export function LineChart({ showGridLines /> - - - {!isEmpty && - timeseries.map((serie) => { - return ( - - ); - })} + {timeseries.map((serie) => { + return ( + + ); + })}