Use null to state empty object instead

Signed-off-by: John Wu <webmaster@leapoahead.com>
This commit is contained in:
John Wu 2015-10-05 17:13:04 -07:00
parent 61f2be02b7
commit 0ddc6cf135

View File

@ -43,7 +43,7 @@
var chartData = $scope.queryResult.getChartData(
$scope.options.columnMapping,
$scope.dateRangeEnabled ? $scope.dateRange : 0
$scope.dateRangeEnabled ? $scope.dateRange : null
);
_.each(chartData, function (s) {