effects divs

This commit is contained in:
ntr 2019-05-03 20:51:21 +10:00
parent f58ad3307b
commit 732ddcb025
2 changed files with 2 additions and 2 deletions

View File

@ -137,7 +137,7 @@ function GamePanel(props) {
: null;
const effects = cryp.effects.length
? cryp.effects.map(c => <span key={c.effect}>{c.effect} - {c.duration}T</span>)
? cryp.effects.map(c => <div key={c.effect}>{c.effect} - {c.duration}T</div>)
: <div>&nbsp;</div>;
return (

View File

@ -82,7 +82,7 @@ function GameCryp(props) {
: null;
const effects = cryp.effects.length
? cryp.effects.map(c => <span key={c.effect}>{c.effect} - {c.duration}T</span>)
? cryp.effects.map(c => <div key={c.effect}>{c.effect} - {c.duration}T</div>)
: <div>&nbsp;</div>;
return (