mirror of
https://github.com/grafana/grafana.git
synced 2024-11-29 20:24:18 -06:00
fix(influxdb): removed limit of 20 for influxdb field dropdown, fixes #2655
This commit is contained in:
parent
745a7b4461
commit
d932a877e8
@ -103,7 +103,7 @@ function (angular, _, $) {
|
|||||||
});
|
});
|
||||||
},
|
},
|
||||||
minLength: 0,
|
minLength: 0,
|
||||||
items: 20,
|
items: 1000,
|
||||||
updater: function (value) {
|
updater: function (value) {
|
||||||
setTimeout(function() {
|
setTimeout(function() {
|
||||||
inputBlur.call($input[0]);
|
inputBlur.call($input[0]);
|
||||||
|
@ -34,9 +34,7 @@
|
|||||||
{{target.refId}}
|
{{target.refId}}
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a class="tight-form-item"
|
<a class="tight-form-item" ng-click="target.hide = !target.hide; get_data();" role="menuitem">
|
||||||
ng-click="target.hide = !target.hide; get_data();"
|
|
||||||
role="menuitem">
|
|
||||||
<i class="fa fa-eye"></i>
|
<i class="fa fa-eye"></i>
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
|
Loading…
Reference in New Issue
Block a user