lower minimum search length to 2 characters

Signed-off-by: Robin Appelman <robin@icewind.nl>
This commit is contained in:
Robin Appelman 2020-07-09 15:00:30 +02:00 committed by backportbot[bot]
parent b99f061d48
commit a7d4a69898
2 changed files with 2 additions and 2 deletions

View File

@ -146,7 +146,7 @@
search.setFilter('files', function (query) {
if (self.fileAppLoaded()) {
self.fileList.setFilter(query);
if (query.length > 2) {
if (query.length > 1) {
//search is not started until 500msec have passed
window.setTimeout(function() {
$('.nofilterresults').addClass('hidden');

View File

@ -385,7 +385,7 @@
function(query) {
if (lastQuery !== query) {
currentResult = -1;
if (query.length > 2) {
if (query.length > 1) {
self.search(query);
} else {
self.hideResults();