only show O S V option for transitive
This commit is contained in:
parent
c3c1e7cdd5
commit
a8271c3eb1
|
@ -13,7 +13,7 @@ function VPDisplay({ VP }: { VP: VPSelection }) {
|
||||||
const [OSV, setOSV] = useState<boolean>(false);
|
const [OSV, setOSV] = useState<boolean>(false);
|
||||||
const result = compileVP(renderVP(VP), { ...form, OSV });
|
const result = compileVP(renderVP(VP), { ...form, OSV });
|
||||||
return <div className="text-center mt-2">
|
return <div className="text-center mt-2">
|
||||||
<div className="form-check mb-2">
|
{VP.verb.transitivity === "transitive" && <div className="form-check mb-2">
|
||||||
<input
|
<input
|
||||||
className="form-check-input"
|
className="form-check-input"
|
||||||
type="checkbox"
|
type="checkbox"
|
||||||
|
@ -24,7 +24,7 @@ function VPDisplay({ VP }: { VP: VPSelection }) {
|
||||||
<label className="form-check-label text-muted" htmlFor="OSVCheckbox">
|
<label className="form-check-label text-muted" htmlFor="OSVCheckbox">
|
||||||
Include O S V
|
Include O S V
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>}
|
||||||
<AbbreviationFormSelector
|
<AbbreviationFormSelector
|
||||||
adjustable={whatsAdjustable(VP)}
|
adjustable={whatsAdjustable(VP)}
|
||||||
form={form}
|
form={form}
|
||||||
|
|
Loading…
Reference in New Issue