From 22a9646bf1c5634152634519b097e77b15c32c3a Mon Sep 17 00:00:00 2001 From: Roman Galochkin Date: Thu, 27 Feb 2020 11:50:46 +0300 Subject: [PATCH] Adds right color annotation --- src/components/DistBuilder.re | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/src/components/DistBuilder.re b/src/components/DistBuilder.re index d8c7b280..3ccedc35 100644 --- a/src/components/DistBuilder.re +++ b/src/components/DistBuilder.re @@ -195,8 +195,9 @@ let make = () => { }) | "RightLimited" => RightLimited({ - xPoint: reform.state.values.xPoint, - excludingProbabilityMass: reform.state.values.excludingProbabilityMass, + xPoint: reform.state.values.xPoint2, + excludingProbabilityMass: + reform.state.values.excludingProbabilityMass2, }) | "LeftAndRightLimited" => LeftAndRightLimited( @@ -315,14 +316,14 @@ let make = () => { @@ -330,21 +331,21 @@ let make = () => { |> E.showIf( E.L.contains( reform.state.values.domainType, - ["LeftLimited", "RightLimited", "LeftAndRightLimited"], + ["LeftLimited", "LeftAndRightLimited"], ), )} {<> @@ -352,7 +353,7 @@ let make = () => { |> E.showIf( E.L.contains( reform.state.values.domainType, - ["LeftAndRightLimited"], + ["RightLimited", "LeftAndRightLimited"], ), )}