diff options
author | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2021-01-25 12:03:20 +0100 |
---|---|---|
committer | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2021-01-25 12:03:20 +0100 |
commit | da327ebf08802627175bdeca71eb2c53f337305c (patch) | |
tree | fd650ef13d4371e797fa41605a8d155f3c53ef46 /core | |
parent | b98860eeb3e9f1abfcca1e5ea335159193a47e80 (diff) | |
download | nextcloud-server-da327ebf08802627175bdeca71eb2c53f337305c.tar.gz nextcloud-server-da327ebf08802627175bdeca71eb2c53f337305c.zip |
do not lower case search provider names on web ui
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
Diffstat (limited to 'core')
-rw-r--r-- | core/src/views/UnifiedSearch.vue | 2 |
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"> |