Explorar o código

Changed template variable typeahead/autocomplete list limit from 10 to 1000, Fixes #767, Fixes #768

Torkel Ödegaard %!s(int64=11) %!d(string=hai) anos
pai
achega
6c71754e51
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      src/app/directives/templateParamSelector.js

+ 1 - 1
src/app/directives/templateParamSelector.js

@@ -38,7 +38,7 @@ function (angular, app, _, $) {
           $input.attr('data-provide', 'typeahead');
           $input.typeahead({
             minLength: 0,
-            items: 10,
+            items: 1000,
             updater: function(value) {
               $input.val(value);
               $input.trigger('blur');