diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2016-09-23 21:59:21 +0200 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2016-09-23 21:59:21 +0200 |
commit | 95d72b2249e1313182d4ee8b3dbf62666d716585 (patch) | |
tree | 79c1c94fe877c74d8ddb9821b44a60168a850f0e /app/assets/javascripts/components/features/ui | |
parent | 0c75ce11229e65023cb91022fedf75acf3f8f062 (diff) |
Temporarily link "settings" to the static version of the form
Diffstat (limited to 'app/assets/javascripts/components/features/ui')
-rw-r--r-- | app/assets/javascripts/components/features/ui/components/navigation_bar.jsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/assets/javascripts/components/features/ui/components/navigation_bar.jsx b/app/assets/javascripts/components/features/ui/components/navigation_bar.jsx index b5d374a88..d53d254c1 100644 --- a/app/assets/javascripts/components/features/ui/components/navigation_bar.jsx +++ b/app/assets/javascripts/components/features/ui/components/navigation_bar.jsx @@ -19,7 +19,7 @@ const NavigationBar = React.createClass({ <div style={{ flex: '1 1 auto', marginLeft: '8px' }}> <strong style={{ fontWeight: '500', display: 'block' }}>{this.props.account.get('acct')}</strong> - <Link to='/settings' style={{ color: '#9baec8', textDecoration: 'none' }}>Settings <i className='fa fa fa-cog' /></Link> + <a href='/settings' style={{ color: '#9baec8', textDecoration: 'none' }}>Settings <i className='fa fa fa-cog' /></a> </div> </div> ); |