fix(influxdb): removed limit of 20 for influxdb field dropdown, fixes #2655

This commit is contained in:
Torkel Ödegaard 2015-09-02 16:10:58 +02:00
parent 745a7b4461
commit d932a877e8
2 changed files with 2 additions and 4 deletions

View File

@ -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]);

View File

@ -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>