From 8d657795175e5a24915c94227020ad8abf0ce6f2 Mon Sep 17 00:00:00 2001 From: adueck Date: Thu, 29 Sep 2022 18:49:24 +0400 Subject: [PATCH] fix highlihts --- src/components/BasicVerbShowCase.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/components/BasicVerbShowCase.tsx b/src/components/BasicVerbShowCase.tsx index 89fd6f3..b1430da 100644 --- a/src/components/BasicVerbShowCase.tsx +++ b/src/components/BasicVerbShowCase.tsx @@ -236,7 +236,9 @@ function tenseToStem(t: T.VerbTense | T.ImperativeTense | T.PerfectTense): "impe : t === "habitualPerfectivePast" ? "perfective root" : t === "imperfectiveImperative" - ? "imperfective root" + ? "imperfective stem" + : t === "perfectiveImperative" + ? "perfective stem" : t.endsWith("Perfect") ? "past participle" : "perfective root";