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/apps
diff options
context:
space:
mode:
authorVincent Petry <vincent@nextcloud.com>2022-09-16 15:53:12 +0300
committerGitHub <noreply@github.com>2022-09-16 15:53:12 +0300
commit8880fe3fd1f4a02a65f1f3080feb7c08bb69cb47 (patch)
tree27343a6feef07b25f4c40c368c12eb0d42f943d1 /apps
parent1025d049c770e0512cc4074d60ed1486668a888e (diff)
parent3a591802fe7fd0ae117d95668a964f12a98ae5eb (diff)
Merge pull request #34096 from nextcloud/bug/noid/tag-loading
Tag loading
Diffstat (limited to 'apps')
-rw-r--r--apps/systemtags/src/systemtagsfilelist.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/systemtags/src/systemtagsfilelist.js b/apps/systemtags/src/systemtagsfilelist.js
index 69e63706264..5f2eae521b2 100644
--- a/apps/systemtags/src/systemtagsfilelist.js
+++ b/apps/systemtags/src/systemtagsfilelist.js
@@ -110,6 +110,7 @@
toggleSelect: true,
separator: ',',
query: _.bind(this._queryTagsAutocomplete, this),
+ minimumInputLength: 3,
id(tag) {
return tag.id
@@ -148,8 +149,7 @@
},
formatSelection(tag) {
- return OC.SystemTags.getDescriptiveTag(tag)[0]
- .outerHTML
+ return OC.SystemTags.getDescriptiveTag(tag).outerHTML
},
sortResults(results) {