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/src
diff options
context:
space:
mode:
authorArthur Schiwon <blizzz@arthur-schiwon.de>2021-01-25 14:03:20 +0300
committerArthur Schiwon <blizzz@arthur-schiwon.de>2021-01-25 14:03:20 +0300
commitda327ebf08802627175bdeca71eb2c53f337305c (patch)
treefd650ef13d4371e797fa41605a8d155f3c53ef46 /core/src
parentb98860eeb3e9f1abfcca1e5ea335159193a47e80 (diff)
do not lower case search provider names on web ui
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
Diffstat (limited to 'core/src')
-rw-r--r--core/src/views/UnifiedSearch.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/src/views/UnifiedSearch.vue b/core/src/views/UnifiedSearch.vue
index b579ce72eb8..45e373ade71 100644
--- a/core/src/views/UnifiedSearch.vue
+++ b/core/src/views/UnifiedSearch.vue
@@ -44,7 +44,7 @@
class="unified-search__form-input"
type="search"
:class="{'unified-search__form-input--with-reset': !!query}"
- :placeholder="t('core', 'Search {types} …', { types: typesNames.join(', ').toLowerCase() })"
+ :placeholder="t('core', 'Search {types} …', { types: typesNames.join(', ') })"
@input="onInputDebounced"
@keypress.enter.prevent.stop="onInputEnter">