mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
reduce minimum length for username suggestions in share dialog, fix #1666
This commit is contained in:
parent
fed39d0db2
commit
e01ab04d2b
1 changed files with 1 additions and 1 deletions
|
|
@ -213,7 +213,7 @@ OC.Share={
|
|||
}
|
||||
});
|
||||
}
|
||||
$('#shareWith').autocomplete({minLength: 2, source: function(search, response) {
|
||||
$('#shareWith').autocomplete({minLength: 1, source: function(search, response) {
|
||||
// if (cache[search.term]) {
|
||||
// response(cache[search.term]);
|
||||
// } else {
|
||||
|
|
|
|||
Loading…
Reference in a new issue