Fixes edges

This commit is contained in:
Roman Galochkin 2020-03-03 09:33:33 +03:00
parent c75686fac5
commit c275a98cbe
2 changed files with 2 additions and 4 deletions

View File

@ -78,7 +78,7 @@ module Menu = {
<Item href={routeToPath(DistBuilder)} key="dist-builder"> <Item href={routeToPath(DistBuilder)} key="dist-builder">
{"Dist Builder" |> E.ste} {"Dist Builder" |> E.ste}
</Item> </Item>
<Item href={routeToPath(DistBuilder2)} key="dist-builder"> <Item href={routeToPath(DistBuilder2)} key="dist-builder-2">
{"Dist Builder 2" |> E.ste} {"Dist Builder 2" |> E.ste}
</Item> </Item>
</div>; </div>;

View File

@ -475,9 +475,7 @@ export class CdfChartD3 {
const x = data.xs[i]; const x = data.xs[i];
const y = data.ys[i]; const y = data.ys[i];
const id = i; const id = i;
if (x > 0) { dt.push({ x, y, id });
dt.push({ x, y, id });
}
} }
return dt; return dt;