Przeglądaj źródła

fix(influxdb 0.9): removed function from function dropdown as this function does not exist in InfluxDB 0.9

Torkel Ödegaard 10 lat temu
rodzic
commit
089508db8e

+ 1 - 1
public/app/plugins/datasource/influxdb/funcEditor.js

@@ -18,7 +18,7 @@ function (angular, _, $) {
 
       var functionList = [
         'count', 'mean', 'sum', 'min', 'max', 'mode', 'distinct', 'median',
-        'derivative', 'non_negative_derivative', 'stddev', 'first', 'last', 'difference'
+        'derivative', 'non_negative_derivative', 'stddev', 'first', 'last'
       ];
 
       var functionMenu = _.map(functionList, function(func) {