fixed error with the stative compounds not being labelled as compounds

This commit is contained in:
lingdocs 2022-03-30 15:02:15 +05:00
parent f3a2a06895
commit a74d3a3f35
1 changed files with 3 additions and 3 deletions

View File

@ -206,11 +206,11 @@ function makeVerbSelection(verb: VerbEntry, oldVerbSelection?: VerbSelection): V
: (transitivity === "transitive")
? getTransObjFromOldVerbSelection()
: "none";
const isCompound = "stative" in info
const isCompound = ("stative" in info || info.type === "stative compound")
? "stative"
: info.type === "dynamic compound"
? "dynamic"
: false;
? "dynamic"
: false;
// TODO: here and below in the changeStatDyn function ... allow for entries with complement
const dynAuxVerb: VerbEntry | undefined = isCompound !== "dynamic"
? undefined