tweaks
This commit is contained in:
parent
b674c7c490
commit
3ca33fde7d
|
@ -101,7 +101,6 @@ function VerbPicker({ onChange, verb, verbs }: { verbs: VerbEntry[], verb: VerbS
|
||||||
className="mb-2"
|
className="mb-2"
|
||||||
// @ts-ignore
|
// @ts-ignore
|
||||||
options={tenseOptions}
|
options={tenseOptions}
|
||||||
isSearchable
|
|
||||||
placeholder={verb ? tenseOptions.find(o => o.value === verb.tense)?.label : "Select Tense..."}
|
placeholder={verb ? tenseOptions.find(o => o.value === verb.tense)?.label : "Select Tense..."}
|
||||||
{...zIndexProps}
|
{...zIndexProps}
|
||||||
/>
|
/>
|
||||||
|
|
|
@ -19,7 +19,7 @@ function NPNounPicker({ onChange, noun, nouns }: { nouns: NounEntry[], noun: Nou
|
||||||
}
|
}
|
||||||
onChange(makeNounSelection(entry));
|
onChange(makeNounSelection(entry));
|
||||||
}
|
}
|
||||||
return <div style={{ maxWidth: "225px" }}>
|
return <div style={{ maxWidth: "225px", minWidth: "150px" }}>
|
||||||
<Select
|
<Select
|
||||||
value={noun && noun.entry.ts.toString()}
|
value={noun && noun.entry.ts.toString()}
|
||||||
// @ts-ignore
|
// @ts-ignore
|
||||||
|
|
Loading…
Reference in New Issue