Fixes #2613: Decrease live search minimum characters to three

This commit is contained in:
Jeremy Stretch 2018-11-27 12:20:52 -05:00
parent f3aef37163
commit 5d07a5a670
2 changed files with 2 additions and 1 deletions

View File

@ -3,6 +3,7 @@ v2.4.9 (FUTURE)
## Bug Fixes
* [#2606](https://github.com/digitalocean/netbox/issues/2606) - Fixed filtering for interfaces with a virtual form factor
* [#2613](https://github.com/digitalocean/netbox/issues/2613) - Decrease live search minimum characters to three
---

View File

@ -49,7 +49,7 @@ $(document).ready(function() {
// Disable parent selection fields
// $('select[filter-for="' + real_field.attr('name') + '"]').val('');
},
minLength: 4,
minLength: 3,
delay: 500
});