Minor touch-ups
This commit is contained in:
parent
c6727c40a5
commit
294965a19a
|
@ -84,4 +84,11 @@ module Mixed = {
|
|||
discrete,
|
||||
discreteProbabilityMassFraction,
|
||||
};
|
||||
};
|
||||
|
||||
module DomainMixed = {
|
||||
type t = {
|
||||
mixedShape,
|
||||
domain,
|
||||
};
|
||||
};
|
|
@ -49,7 +49,7 @@ let make =
|
|||
)
|
||||
}>
|
||||
{r.name |> ReasonReact.string}
|
||||
{(r.truthValue ? "TRUE" : "FALSE") |> ReasonReact.string}
|
||||
{(r.truthValue ? " = True" : " = False") |> ReasonReact.string}
|
||||
</div>
|
||||
)
|
||||
|> ReasonReact.array}
|
||||
|
@ -77,7 +77,7 @@ let make =
|
|||
);
|
||||
();
|
||||
}}>
|
||||
{"True" |> ReasonReact.string}
|
||||
{"=True" |> ReasonReact.string}
|
||||
</button>
|
||||
<button
|
||||
className="hover:bg-red-700 text-white py-0 px-1 rounded bg-red-500"
|
||||
|
@ -97,7 +97,7 @@ let make =
|
|||
),
|
||||
);
|
||||
}}>
|
||||
{"False" |> ReasonReact.string}
|
||||
{"=False" |> ReasonReact.string}
|
||||
</button>
|
||||
</div>
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue
Block a user