mirror of
https://github.com/starshardstudio/peafowl.git
synced 2024-11-22 04:54:19 +00:00
Fix content icon always displaying, even for reviews with no content
This commit is contained in:
parent
d55e06f388
commit
bc006a7366
1 changed files with 1 additions and 1 deletions
|
@ -66,7 +66,7 @@ export function GameRow({game, columns = gameRowColumnKindDefault, priority}: Ga
|
||||||
return (
|
return (
|
||||||
<td key={index} className={`review-hascontent`}>
|
<td key={index} className={`review-hascontent`}>
|
||||||
<data value={game.content ? "true" : "false"}>
|
<data value={game.content ? "true" : "false"}>
|
||||||
<i className={"fa-sharp fa-regular fa-bars-sort"}/>
|
{game.content && <i className={"fa-sharp fa-regular fa-bars-sort"}/>}
|
||||||
</data>
|
</data>
|
||||||
</td>
|
</td>
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in a new issue