mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
fix(influxdb): fixed issue where Group By label was only showed on first query, fixes #3453
This commit is contained in:
parent
cdc36dd171
commit
45c69fa638
@ -2,6 +2,7 @@
|
|||||||
|
|
||||||
### Bug Fixes
|
### Bug Fixes
|
||||||
* **metric editors**: Fix for clicking typeahead auto dropdown option, fixes [#3428](https://github.com/grafana/grafana/issues/3428)
|
* **metric editors**: Fix for clicking typeahead auto dropdown option, fixes [#3428](https://github.com/grafana/grafana/issues/3428)
|
||||||
|
* **influxdb**: Fixed issue showing Group By label only on first query, fixes [#3453](https://github.com/grafana/grafana/issues/3453)
|
||||||
|
|
||||||
# 2.6.0-Beta1 (2015-12-04)
|
# 2.6.0-Beta1 (2015-12-04)
|
||||||
|
|
||||||
|
@ -82,7 +82,7 @@
|
|||||||
<div class="tight-form">
|
<div class="tight-form">
|
||||||
<ul class="tight-form-list">
|
<ul class="tight-form-list">
|
||||||
<li class="tight-form-item query-keyword tight-form-align" style="width: 75px;">
|
<li class="tight-form-item query-keyword tight-form-align" style="width: 75px;">
|
||||||
<span ng-show="$index === 0">GROUP BY</span>
|
<span>GROUP BY</span>
|
||||||
</li>
|
</li>
|
||||||
<li ng-repeat="part in queryModel.groupByParts">
|
<li ng-repeat="part in queryModel.groupByParts">
|
||||||
<influx-query-part-editor part="part" class="tight-form-item tight-form-func" remove-action="removeGroupByPart(part, $index)" part-updated="get_data();" get-options="getPartOptions(part)"></influx-query-part-editor>
|
<influx-query-part-editor part="part" class="tight-form-item tight-form-func" remove-action="removeGroupByPart(part, $index)" part-updated="get_data();" get-options="getPartOptions(part)"></influx-query-part-editor>
|
||||||
|
Loading…
Reference in New Issue
Block a user