This commit is contained in:
lingdocs 2022-03-21 16:57:26 +05:00
parent b674c7c490
commit 3ca33fde7d
2 changed files with 1 additions and 2 deletions

View File

@ -101,7 +101,6 @@ function VerbPicker({ onChange, verb, verbs }: { verbs: VerbEntry[], verb: VerbS
className="mb-2"
// @ts-ignore
options={tenseOptions}
isSearchable
placeholder={verb ? tenseOptions.find(o => o.value === verb.tense)?.label : "Select Tense..."}
{...zIndexProps}
/>

View File

@ -19,7 +19,7 @@ function NPNounPicker({ onChange, noun, nouns }: { nouns: NounEntry[], noun: Nou
}
onChange(makeNounSelection(entry));
}
return <div style={{ maxWidth: "225px" }}>
return <div style={{ maxWidth: "225px", minWidth: "150px" }}>
<Select
value={noun && noun.entry.ts.toString()}
// @ts-ignore