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"
|
||||
// @ts-ignore
|
||||
options={tenseOptions}
|
||||
isSearchable
|
||||
placeholder={verb ? tenseOptions.find(o => o.value === verb.tense)?.label : "Select Tense..."}
|
||||
{...zIndexProps}
|
||||
/>
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue