This commit is contained in:
lingdocs 2022-04-07 22:49:44 +05:00
parent 00e4900d7b
commit 8191b48f05
2 changed files with 1 additions and 7 deletions

View File

@ -122,7 +122,7 @@ function TensePicker({ onChange, verb, mode }: {
}
}
const tOptions = (verb?.tenseCategory === "perfect") ? perfectTenseOptions : tenseOptions;
return <div className="mb-0 mt-3">
return <div>
<div style={{ maxWidth: "300px", minWidth: "250px", margin: "0 auto" }}>
<div className="d-flex flex-row justify-content-between align-items-center">
<div className="h5">Tense:</div>

View File

@ -24,12 +24,6 @@ export const zIndexProps = {
export function makeVerbSelectOption(e: VerbEntry, opts: T.TextOptions): { value: string, label: string | JSX.Element } {
const eng = getEnglishVerb(e.entry);
if (!eng) {
console.log("yep no eng for", e);
} else if (e.entry.p === "اړېدل") {
console.log("eng for", e);
console.log(eng);
}
const ps = plainTextPsAdjustment(
{ p: e.entry.p, f: removeFVarients(e.entry.f) },
opts,