Parcourir la source

Merge branch '1.7.x'

Torkel Ödegaard il y a 11 ans
Parent
commit
a242c40b23
2 fichiers modifiés avec 2 ajouts et 2 suppressions
  1. 1 1
      CHANGELOG.md
  2. 1 1
      src/app/services/influxdb/influxdbDatasource.js

+ 1 - 1
CHANGELOG.md

@@ -1,4 +1,4 @@
-# 1.7.0 (unreleased)
+# 1.7.0 (2014-08-11)
 
 **Fixes**
 - [Issue #652](https://github.com/grafana/grafana/issues/652). Timepicker: Entering custom date range impossible when refresh is low (now is constantly reset)

+ 1 - 1
src/app/services/influxdb/influxdbDatasource.js

@@ -228,7 +228,7 @@ function (angular, _, kbn, InfluxSeries) {
           inspect: { type: 'influxdb' },
         };
 
-        return $http(options).then(function (data) {
+        return $http(options).success(function (data) {
           deferred.resolve(data);
         });
       }, 10);