From 88f6af2f431dfd5cdec1816df1af8f808f54916f Mon Sep 17 00:00:00 2001 From: Chris Blanchard Date: Mon, 18 Apr 2016 23:11:07 +0100 Subject: [PATCH] Display current roster size in gather menu --- app/javascripts/components/gather.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/javascripts/components/gather.js b/app/javascripts/components/gather.js index 858a769..4cdd010 100644 --- a/app/javascripts/components/gather.js +++ b/app/javascripts/components/gather.js @@ -731,9 +731,9 @@ const GatherMenu = exports.GatherMenu = React.createClass({ return (
  • - {gather.name} + {gather.name} ({gather.gatherers.length}/{gather.teamSize * 2})
    - {`${gather.teamSize} v ${gather.teamSize} - ${gather.description}`} + {gather.description}
  • ); })