Version 11.0.0

This commit is contained in:
Alberto
2017-06-26 16:40:27 +02:00
parent b54d549959
commit f8f0c21af2
6 changed files with 12 additions and 14 deletions

View File

@@ -5,9 +5,9 @@ export default class MedalRenderer extends Component {
super(props);
this.country = this.props.node.key;
this.gold = this.props.data.gold;
this.silver = this.props.data.silver;
this.bronze = this.props.data.bronze;
this.gold = this.props.node.aggData.gold;
this.silver = this.props.node.aggData.silver;
this.bronze = this.props.node.aggData.bronze;
// override the containing div so that the +/- and label are inline
this.props.reactContainer.style.display = "inline-block";