cleanup
This commit is contained in:
parent
00e4900d7b
commit
8191b48f05
|
@ -122,7 +122,7 @@ function TensePicker({ onChange, verb, mode }: {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
const tOptions = (verb?.tenseCategory === "perfect") ? perfectTenseOptions : tenseOptions;
|
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 style={{ maxWidth: "300px", minWidth: "250px", margin: "0 auto" }}>
|
||||||
<div className="d-flex flex-row justify-content-between align-items-center">
|
<div className="d-flex flex-row justify-content-between align-items-center">
|
||||||
<div className="h5">Tense:</div>
|
<div className="h5">Tense:</div>
|
||||||
|
|
|
@ -24,12 +24,6 @@ export const zIndexProps = {
|
||||||
|
|
||||||
export function makeVerbSelectOption(e: VerbEntry, opts: T.TextOptions): { value: string, label: string | JSX.Element } {
|
export function makeVerbSelectOption(e: VerbEntry, opts: T.TextOptions): { value: string, label: string | JSX.Element } {
|
||||||
const eng = getEnglishVerb(e.entry);
|
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(
|
const ps = plainTextPsAdjustment(
|
||||||
{ p: e.entry.p, f: removeFVarients(e.entry.f) },
|
{ p: e.entry.p, f: removeFVarients(e.entry.f) },
|
||||||
opts,
|
opts,
|
||||||
|
|
Loading…
Reference in New Issue