Display current roster size in gather menu

This commit is contained in:
Chris Blanchard 2016-04-18 23:11:07 +01:00
parent 277dde3ddb
commit 88f6af2f43

View file

@ -731,9 +731,9 @@ const GatherMenu = exports.GatherMenu = React.createClass({
return (
<li onClick={this.onClick(gather)} className={this.itemClass(gather)}
key={gather.type}>
<strong>{gather.name}</strong>
<strong>{gather.name} ({gather.gatherers.length}/{gather.teamSize * 2})</strong>
<br />
{`${gather.teamSize} v ${gather.teamSize} - ${gather.description}`}
{gather.description}
</li>
);
})