Compare commits

...

3 Commits

Author SHA1 Message Date
adueck 7b24fc381d weird issue with entry component 2024-05-17 11:50:59 -04:00
adueck 0138e5e485 weird issue with entry component 2024-05-17 11:50:12 -04:00
adueck eeb0fce480 update filler words 2024-05-17 09:23:12 -04:00
2 changed files with 9 additions and 5 deletions

View File

@ -42,7 +42,8 @@ function Entry({
<InlinePs opts={textOptions}>{{ p: entry.p, f: entry.f }}</InlinePs> <InlinePs opts={textOptions}>{{ p: entry.p, f: entry.f }}</InlinePs>
</dt> </dt>
{` `} {` `}
<em>{entry.c}</em> {/* Can't figure out why but the <em> here can't be empty */}
<em>{entry.c || "\u00A0"}</em>
{entry.a && !nonClickable && ( {entry.a && !nonClickable && (
<i <i
onClick={handlePlayStorageAudio} onClick={handlePlayStorageAudio}
@ -51,10 +52,12 @@ function Entry({
/> />
)} )}
</div> </div>
<ExtraEntryInfo entry={entry} textOptions={textOptions} /> <div>
<dd> <ExtraEntryInfo entry={entry} textOptions={textOptions} />
<div className="entry-definition">{entry.e}</div> <dd>
</dd> <div className="entry-definition">{entry.e}</div>
</dd>
</div>
</div> </div>
); );
} }

View File

@ -19,6 +19,7 @@ const fillerWords = [
"a", "a",
"the", "the",
"Arabic", "Arabic",
"Urdu",
"plural", "plural",
"verb", "verb",
"stem", "stem",