remove labels for verb length things

This commit is contained in:
lingdocs 2022-03-20 11:21:31 +05:00
parent 9204ca150c
commit fc27807858
1 changed files with 3 additions and 3 deletions

View File

@ -40,12 +40,12 @@ function VPDisplay({ VP }: { VP: VPSelection }) {
</div>
{"long" in result.ps ?
<div>
<div className="h6">Long Verb:</div>
{/* <div className="h6">Long Verb:</div> */}
<VariationLayer vs={result.ps.long} />
<div className="h6">Short Verb:</div>
{/* <div className="h6">Short Verb:</div> */}
<VariationLayer vs={result.ps.short} />
{result.ps.mini && <>
<div className="h6">Mini Verb:</div>
{/* <div className="h6">Mini Verb:</div> */}
<VariationLayer vs={result.ps.mini} />
</>}
</div>