about summary refs log tree commit diff
path: root/app/assets
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2016-11-14 01:19:25 +0100
committerEugen Rochko <eugen@zeonfederated.com>2016-11-14 01:19:25 +0100
commitcea28e0c1d91489756491f24a3e1376188d2bbf8 (patch)
tree23a5b4bc4cec0f7144682203d64b589ff3f029a9 /app/assets
parentf8f15e5697c1f6e31cd2ee8e1ac5f654454c7dfe (diff)
Fix wrong link header on followers API, wrong link in tabs component, order
account results
Diffstat (limited to 'app/assets')
-rw-r--r--app/assets/javascripts/components/features/ui/components/tabs_bar.jsx3
1 files changed, 2 insertions, 1 deletions
diff --git a/app/assets/javascripts/components/features/ui/components/tabs_bar.jsx b/app/assets/javascripts/components/features/ui/components/tabs_bar.jsx
index b39030ca5..723f8c9ac 100644
--- a/app/assets/javascripts/components/features/ui/components/tabs_bar.jsx
+++ b/app/assets/javascripts/components/features/ui/components/tabs_bar.jsx
@@ -14,6 +14,7 @@ const tabStyle = {
   padding: '10px',
   color: '#fff',
   textDecoration: 'none',
+  textAlign: 'center',
   fontSize: '12px',
   fontWeight: '500',
   borderBottom: '2px solid #373b4a'
@@ -30,7 +31,7 @@ const TabsBar = () => {
       <Link style={tabStyle} activeStyle={tabActiveStyle} to='/statuses/new'><i className='fa fa-fw fa-pencil' /> Compose</Link>
       <Link style={tabStyle} activeStyle={tabActiveStyle} to='/timelines/home'><i className='fa fa-fw fa-home' /> Home</Link>
       <Link style={tabStyle} activeStyle={tabActiveStyle} to='/timelines/mentions'><i className='fa fa-fw fa-at' /> Mentions</Link>
-      <Link style={tabStyle} activeStyle={tabActiveStyle} to='/timelines/all'><i className='fa fa-fw fa-globe' /> Public</Link>
+      <Link style={tabStyle} activeStyle={tabActiveStyle} to='/timelines/public'><i className='fa fa-fw fa-globe' /> Public</Link>
     </div>
   );
 };