at last i may rest

This commit is contained in:
ntr
2019-06-04 00:27:28 +10:00
parent dde6d28393
commit 61ced01ba7
7 changed files with 33 additions and 31 deletions
+1 -1
View File
@@ -25,8 +25,8 @@ function renderHeader(args) {
game,
} = args;
if (instance) return <InstanceFooter />;
if (game) return <GameFooter />;
if (instance) return <InstanceFooter />;
if (nav === 'team') return <TeamFooter />;
if (nav === 'list') return <ListFooter />;
@@ -190,13 +190,13 @@ function Construct(props) {
|| (s.includes('Power') && 'Power')
|| (s.includes('Life') && 'Life');
return <figure key={stat.stat}
return <div key={stat.stat}
alt={stat.stat}
className={stat.stat}
onMouseOver={e => hoverInfo(e, info)} >
{shapes[s]()}
<figcaption>{construct[stat.stat].value}</figcaption>
</figure>;
<div>{construct[stat.stat].value}</div>
</div>;
});
return (