1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

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

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