diff options
author | Morris Jobke <hey@morrisjobke.de> | 2016-11-14 11:46:21 +0100 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2016-11-14 11:46:21 +0100 |
commit | b35812fce6463ff2d3e979d0124b2bbae801bb25 (patch) | |
tree | 3c1f1d992310714508753b7f8ce13a4bb12d61ea | |
parent | 16a110e803a1786e638b8141fd65fc229b845a5d (diff) | |
download | nextcloud-server-b35812fce6463ff2d3e979d0124b2bbae801bb25.tar.gz nextcloud-server-b35812fce6463ff2d3e979d0124b2bbae801bb25.zip |
Show specific empty message for tag input fields
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
-rw-r--r-- | apps/systemtags/js/systemtagsfilelist.js | 3 | ||||
-rw-r--r-- | core/js/systemtags/systemtagsinputfield.js | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/apps/systemtags/js/systemtagsfilelist.js b/apps/systemtags/js/systemtagsfilelist.js index 56838018a2c..25f377785b7 100644 --- a/apps/systemtags/js/systemtagsfilelist.js +++ b/apps/systemtags/js/systemtagsfilelist.js @@ -115,6 +115,9 @@ escapeMarkup: function(m) { // prevent double markup escape return m; + }, + formatNoMatches: function() { + return t('systemtags', 'No tags found'); } }); this.$filterField.on('change', _.bind(this._onTagsChanged, this)); diff --git a/core/js/systemtags/systemtagsinputfield.js b/core/js/systemtags/systemtagsinputfield.js index 2eb8d0a44cb..5d986d17290 100644 --- a/core/js/systemtags/systemtagsinputfield.js +++ b/core/js/systemtags/systemtagsinputfield.js @@ -408,6 +408,9 @@ return 1; }); return results; + }, + formatNoMatches: function() { + return t('core', 'No tags found'); } }) .on('select2-selecting', this._onSelectTag) |