]> cat aescling's git repositories - mastodon.git/commitdiff
Add missing back button to "Follow Requests"
authorBillie Thompson <billie@purplebooth.co.uk>
Sat, 28 Jan 2017 23:49:42 +0000 (23:49 +0000)
committerBillie Thompson <billie@purplebooth.co.uk>
Sun, 29 Jan 2017 18:53:51 +0000 (18:53 +0000)
Currently we have the problem where the follow request button is missing
from the Follow request tab. This means that when you visit that tab you
either have to press the back button in the browser or re-enter the home
page, which breaks the app flow.

This will resolve that issue by adding a new back button to that tab,
in the same way that the public timeline, and favourites have.

app/assets/javascripts/components/features/follow_requests/index.jsx

index 4613709993b47e5bd2bdd5e9b672e68f514195d8..5c60b60282e78013e61091f12cde6d32d00f2201 100644 (file)
@@ -4,6 +4,7 @@ import ImmutablePropTypes from 'react-immutable-proptypes';
 import LoadingIndicator from '../../components/loading_indicator';
 import { ScrollContainer } from 'react-router-scroll';
 import Column from '../ui/components/column';
+import ColumnBackButton from '../../components/column_back_button';
 import AccountAuthorizeContainer from './containers/account_authorize_container';
 import { fetchFollowRequests, expandFollowRequests } from '../../actions/accounts';
 import { defineMessages, injectIntl } from 'react-intl';
@@ -51,6 +52,7 @@ const FollowRequests = React.createClass({
 
     return (
       <Column icon='users' heading={intl.formatMessage(messages.heading)}>
+        <ColumnBackButton />
         <ScrollContainer scrollKey='follow_requests'>
           <div className='scrollable' onScroll={this.handleScroll}>
             {accountIds.map(id =>