diff --git a/public/app/plugins/datasource/influxdb/partials/query.editor.html b/public/app/plugins/datasource/influxdb/partials/query.editor.html index c8848d6f43b..3d14b18c81d 100644 --- a/public/app/plugins/datasource/influxdb/partials/query.editor.html +++ b/public/app/plugins/datasource/influxdb/partials/query.editor.html @@ -75,19 +75,19 @@
- +
- -
- + +
+
- -
- + +
+
diff --git a/public/app/plugins/datasource/influxdb/query_ctrl.ts b/public/app/plugins/datasource/influxdb/query_ctrl.ts index f78ed0727db..c676c222d94 100644 --- a/public/app/plugins/datasource/influxdb/query_ctrl.ts +++ b/public/app/plugins/datasource/influxdb/query_ctrl.ts @@ -34,8 +34,8 @@ export class InfluxQueryCtrl extends QueryCtrl { {text: 'Table', value: 'table'}, ]; this.orderByTime = [ - {text: 'Ascending', value: 'ASC'}, - {text: 'Descending', value: 'DESC'}, + {text: 'ASC', value: 'ASC'}, + {text: 'DESC', value: 'DESC'}, ]; this.policySegment = uiSegmentSrv.newSegment(this.target.policy);