Add description

This commit is contained in:
Chris Blanchard 2016-03-18 14:57:50 +00:00
parent 7b437a5c62
commit 66e77f204d

View file

@ -608,7 +608,7 @@ const Gather = exports.Gather = React.createClass({
return ( return (
<div> <div>
<div className="panel panel-primary add-bottom"> <div className="panel panel-primary add-bottom">
<div className="panel-heading">{gather.name}</div> <div className="panel-heading">{gather.name} ({gather.description})</div>
<div className="panel-body"> <div className="panel-body">
<GatherProgress gather={gather} /> <GatherProgress gather={gather} />
<GatherActions gather={gather} user={user} thisGatherer={thisGatherer} <GatherActions gather={gather} user={user} thisGatherer={thisGatherer}
@ -625,7 +625,7 @@ const Gather = exports.Gather = React.createClass({
return ( return (
<div> <div>
<div className="panel panel-primary add-bottom"> <div className="panel panel-primary add-bottom">
<div className="panel-heading">{gather.name}</div> <div className="panel-heading">{gather.name} ({gather.description})</div>
</div> </div>
<Gatherers gather={gather} user={user} thisGatherer={thisGatherer} <Gatherers gather={gather} user={user} thisGatherer={thisGatherer}
socket={socket} soundController={soundController}/> socket={socket} soundController={soundController}/>