mirror of
https://github.com/netbox-community/netbox.git
synced 2025-07-14 01:41:22 -06:00
Fixes #2613: Decrease live search minimum characters to three
This commit is contained in:
parent
f3aef37163
commit
5d07a5a670
@ -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
|
||||
|
||||
---
|
||||
|
||||
|
@ -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
|
||||
});
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user