fixed error with the stative compounds not being labelled as compounds
This commit is contained in:
parent
f3a2a06895
commit
a74d3a3f35
|
@ -206,7 +206,7 @@ function makeVerbSelection(verb: VerbEntry, oldVerbSelection?: VerbSelection): V
|
||||||
: (transitivity === "transitive")
|
: (transitivity === "transitive")
|
||||||
? getTransObjFromOldVerbSelection()
|
? getTransObjFromOldVerbSelection()
|
||||||
: "none";
|
: "none";
|
||||||
const isCompound = "stative" in info
|
const isCompound = ("stative" in info || info.type === "stative compound")
|
||||||
? "stative"
|
? "stative"
|
||||||
: info.type === "dynamic compound"
|
: info.type === "dynamic compound"
|
||||||
? "dynamic"
|
? "dynamic"
|
||||||
|
|
Loading…
Reference in New Issue