Merge pull request #21782 from nextcloud/backport/21777/stable19
[stable19] lower minimum search length to 2 characters
This commit is contained in:
commit
6506860561
|
@ -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');
|
||||
|
|
|
@ -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();
|
||||
|
|
Loading…
Reference in New Issue