From a8271c3eb18c5a361c5a97e2a2f9d1897ea3054a Mon Sep 17 00:00:00 2001 From: lingdocs <71590811+lingdocs@users.noreply.github.com> Date: Tue, 29 Mar 2022 11:05:35 +0500 Subject: [PATCH] only show O S V option for transitive --- src/components/phrase-builder/VPDisplay.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/phrase-builder/VPDisplay.tsx b/src/components/phrase-builder/VPDisplay.tsx index badcb80..3d2f40a 100644 --- a/src/components/phrase-builder/VPDisplay.tsx +++ b/src/components/phrase-builder/VPDisplay.tsx @@ -13,7 +13,7 @@ function VPDisplay({ VP }: { VP: VPSelection }) { const [OSV, setOSV] = useState(false); const result = compileVP(renderVP(VP), { ...form, OSV }); return
-
+ {VP.verb.transitivity === "transitive" &&
Include O S V -
+
}