diff options
Diffstat (limited to 'client/chart/pie.charts.js')
| -rw-r--r-- | client/chart/pie.charts.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/client/chart/pie.charts.js b/client/chart/pie.charts.js index 47f7756c..af790be7 100644 --- a/client/chart/pie.charts.js +++ b/client/chart/pie.charts.js @@ -18,6 +18,7 @@ class PieCharts extends Component { const { payload } = this.props const { paper, citations } = payload.data if (!citations.length) return null + const countries = {} const institutionTypes = { ...initialInstitutionLookup } citations.forEach(citation => { @@ -55,7 +56,7 @@ class PieCharts extends Component { otherCountryCount, ]) } - console.log(countryTuples, otherCountryCount, countryRows) + // console.log(countryTuples, otherCountryCount, countryRows) const institutionRows = toTuples(institutionTypes) .map(a => [institutionOrder[a[0]], a]) |
