From c275a98cbe32effdcb0818d59a707449c2b6f8e3 Mon Sep 17 00:00:00 2001 From: Roman Galochkin Date: Tue, 3 Mar 2020 09:33:33 +0300 Subject: [PATCH] Fixes edges --- src/App.re | 2 +- src/components/charts/DistributionPlot/distPlotD3.js | 4 +--- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/src/App.re b/src/App.re index 058f25fa..e2526c25 100644 --- a/src/App.re +++ b/src/App.re @@ -78,7 +78,7 @@ module Menu = { {"Dist Builder" |> E.ste} - + {"Dist Builder 2" |> E.ste} ; diff --git a/src/components/charts/DistributionPlot/distPlotD3.js b/src/components/charts/DistributionPlot/distPlotD3.js index 65632906..5a94d979 100644 --- a/src/components/charts/DistributionPlot/distPlotD3.js +++ b/src/components/charts/DistributionPlot/distPlotD3.js @@ -475,9 +475,7 @@ export class CdfChartD3 { const x = data.xs[i]; const y = data.ys[i]; const id = i; - if (x > 0) { - dt.push({ x, y, id }); - } + dt.push({ x, y, id }); } return dt;