Skip to content

Commit

Permalink
view not able to handle missing values
Browse files Browse the repository at this point in the history
  • Loading branch information
rockgobo committed Jan 3, 2017
1 parent 18c1b75 commit 8544d81
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/components/topic-view/topic-view.component.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
this.filterData = function () {
// #71: Merge the filtered data to a basic data table with 0 for each region
// Maybe use a method with faster computation
var basic_data = GeoData.getDataByValue(0,0,this.year,'.')
var basic_data = GeoData.getDataByValue(0,0,this.year,0)
var data = this.data_.filter(function (d) {
return d.year === this.year
}.bind(this))
Expand Down

0 comments on commit 8544d81

Please sign in to comment.