about summary refs log tree commit diff
path: root/app/assets/javascripts/components/reducers/search.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/javascripts/components/reducers/search.jsx')
-rw-r--r--app/assets/javascripts/components/reducers/search.jsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/assets/javascripts/components/reducers/search.jsx b/app/assets/javascripts/components/reducers/search.jsx
index f3ee17f60..9c2041863 100644
--- a/app/assets/javascripts/components/reducers/search.jsx
+++ b/app/assets/javascripts/components/reducers/search.jsx
@@ -14,7 +14,7 @@ const initialState = Immutable.Map({
 const normalizeSuggestions = (state, value, accounts) => {
   let newSuggestions = [
     {
-      title: 'Account',
+      title: 'account',
       items: accounts.map(item => ({
         type: 'account',
         id: item.id,
@@ -25,7 +25,7 @@ const normalizeSuggestions = (state, value, accounts) => {
 
   if (value.indexOf('@') === -1) {
     newSuggestions.push({
-      title: 'Hashtag',
+      title: 'hashtag',
       items: [
         {
           type: 'hashtag',