gender audio markers on quick play
This commit is contained in:
parent
d2a1d03640
commit
488eee3aba
|
@ -44,14 +44,17 @@ function Entry({
|
||||||
</dt>
|
</dt>
|
||||||
{` `}
|
{` `}
|
||||||
{/* Can't figure out why but the <em> here can't be empty */}
|
{/* Can't figure out why but the <em> here can't be empty */}
|
||||||
<em>{entry.c || "\u00A0"}</em>
|
<em className="mr-1">{entry.c || "\u00A0"}</em>
|
||||||
{!nonClickable &&
|
{!nonClickable &&
|
||||||
gendersRecorded.map((gender) => (
|
gendersRecorded.map((gender) => (
|
||||||
<i
|
<span className="ml-2">
|
||||||
onClick={handlePlayStorageAudio(gender)}
|
<span className="text-muted mr-1">{gender[0]}</span>
|
||||||
className="clickable ml-2 fas fa-volume-down px-1"
|
<i
|
||||||
title="play audio"
|
onClick={handlePlayStorageAudio(gender)}
|
||||||
/>
|
className="clickable fas fa-volume-down px-1"
|
||||||
|
title="play audio"
|
||||||
|
/>
|
||||||
|
</span>
|
||||||
))}
|
))}
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
|
|
Loading…
Reference in New Issue