Merge branch 'v4.0.x'

This commit is contained in:
Torkel Ödegaard
2016-12-12 14:39:53 +01:00
4 changed files with 3 additions and 3 deletions

View File

@@ -11,6 +11,7 @@ import (
func TestSimpleReducer(t *testing.T) {
Convey("Test simple reducer by calculating", t, func() {
Convey("sum", func() {
result := testReducer("sum", 1, 2, 3)
So(result, ShouldEqual, float64(6))

View File

@@ -15,7 +15,6 @@ export class SubmenuCtrl {
private $location) {
this.annotations = this.dashboard.templating.list;
this.variables = this.variableSrv.variables;
console.log(this.variables);
}
annotationStateChanged() {

View File

@@ -36,7 +36,7 @@ export class AxesEditorCtrl {
this.xAxisStatOptions = [
{text: 'Avg', value: 'avg'},
{text: 'Min', value: 'min'},
{text: 'Max', value: 'min'},
{text: 'Max', value: 'max'},
{text: 'Total', value: 'total'},
{text: 'Count', value: 'count'},
{text: 'Current', value: 'current'},

View File

@@ -163,7 +163,7 @@ export class DataProcessor {
return [
{text: 'Avg', value: 'avg'},
{text: 'Min', value: 'min'},
{text: 'Max', value: 'min'},
{text: 'Max', value: 'max'},
{text: 'Total', value: 'total'},
{text: 'Count', value: 'count'},
];