about summary refs log tree commit diff
path: root/app
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2017-01-07 15:46:39 +0100
committerEugen Rochko <eugen@zeonfederated.com>2017-01-07 15:46:39 +0100
commitbe6ae3546f1673e497e5d9e74e5a7dfad9f1ff72 (patch)
treedf0c6ce2a44aa5b24174db2407d9368a61bea7cb /app
parent5c7add21761fc6b7d3c0af0819865242ce381960 (diff)
Replace getting started icon on desktop nav bar with asterisk instead of hamburger
Diffstat (limited to 'app')
-rw-r--r--app/assets/javascripts/components/features/compose/components/drawer.jsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/assets/javascripts/components/features/compose/components/drawer.jsx b/app/assets/javascripts/components/features/compose/components/drawer.jsx
index b694cdd2a..d0e865d29 100644
--- a/app/assets/javascripts/components/features/compose/components/drawer.jsx
+++ b/app/assets/javascripts/components/features/compose/components/drawer.jsx
@@ -47,7 +47,7 @@ const Drawer = ({ children, withHeader, intl }) => {
   if (withHeader) {
     header = (
       <div className='drawer__header'>
-        <Link title={intl.formatMessage(messages.start)} style={tabStyle} to='/getting-started'><i className='fa fa-fw fa-bars' /></Link>
+        <Link title={intl.formatMessage(messages.start)} style={tabStyle} to='/getting-started'><i className='fa fa-fw fa-asterisk' /></Link>
         <Link title={intl.formatMessage(messages.public)} style={tabStyle} to='/timelines/public'><i className='fa fa-fw fa-globe' /></Link>
         <a title={intl.formatMessage(messages.preferences)} style={tabStyle} href='/settings/preferences'><i className='fa fa-fw fa-cog' /></a>
         <a title={intl.formatMessage(messages.logout)} style={tabStyle} href='/auth/sign_out' data-method='delete'><i className='fa fa-fw fa-sign-out' /></a>