Wait until relationship is loaded before showing follow button (#8440)

Fix #8410
lolsob-rspec
Eugen Rochko 2018-08-25 22:46:59 +02:00 committed by GitHub
parent 62d8a0832c
commit 38f6a43960
1 changed files with 3 additions and 1 deletions

View File

@ -104,7 +104,9 @@ export default class Header extends ImmutablePureComponent {
}
if (me !== account.get('id')) {
if (account.getIn(['relationship', 'requested'])) {
if (!account.get('relationship')) { // Wait until the relationship is loaded
actionBtn = '';
} else if (account.getIn(['relationship', 'requested'])) {
actionBtn = (
<div className='account--action-button'>
<IconButton size={26} active icon='hourglass' title={intl.formatMessage(messages.requested)} onClick={this.props.onFollow} />