mirror of
https://github.com/amineo/t2-stat-parser.git
synced 2026-01-19 17:34:43 +00:00
Display all games for player even if their score is 0
This commit is contained in:
parent
093636fc6d
commit
a484d94254
|
|
@ -31,7 +31,7 @@ const returnWeaponTotals = (statTotals) => {
|
||||||
|
|
||||||
const GameCard = (player, index) => {
|
const GameCard = (player, index) => {
|
||||||
// only display card if player has score
|
// only display card if player has score
|
||||||
if (Number(player.stats.score) <= 0){return}
|
// if (Number(player.stats.score) <= 0){return}
|
||||||
|
|
||||||
return <div key={index} className="bg-white shadow overflow-hidden sm:rounded-lg mb-5">
|
return <div key={index} className="bg-white shadow overflow-hidden sm:rounded-lg mb-5">
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue