Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorDaniel Kesselberg <mail@danielkesselberg.de>2022-09-15 12:56:03 +0300
committerDaniel Kesselberg <mail@danielkesselberg.de>2022-09-15 13:01:28 +0300
commite1d9b0bae20510526b0d00c2afe464945847face (patch)
treea6e7d917123cc5812fee4997a4eaec0e403442cb /core
parent4c1f06170e1f7256bdc0791c40359c5ab6ad5eda (diff)
Add minimumInputLength for tags select
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
Diffstat (limited to 'core')
-rw-r--r--core/src/systemtags/systemtagsinputfield.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/core/src/systemtags/systemtagsinputfield.js b/core/src/systemtags/systemtagsinputfield.js
index e1bbf5a34c6..7c68a4b09ad 100644
--- a/core/src/systemtags/systemtagsinputfield.js
+++ b/core/src/systemtags/systemtagsinputfield.js
@@ -385,6 +385,7 @@ import templateSelection from './templates/selection.handlebars'
multiple: this._multiple,
toggleSelect: this._multiple,
query: _.bind(this._queryTagsAutocomplete, this),
+ minimumInputLength: 3,
id: function(tag) {
return tag.id
},