Browse Source

[Glitch] Wait until relationship is loaded before showing follow button

Port cd049454be to glitch-soc
closed-social-glitch-2
Thibaut Girka 6 years ago
committed by ThibG
parent
commit
3106c81b1e
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      app/javascript/flavours/glitch/features/account/components/header.js

+ 3
- 1
app/javascript/flavours/glitch/features/account/components/header.js View File

@ -56,7 +56,9 @@ export default class Header extends ImmutablePureComponent {
} }
if (me !== account.get('id')) { 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 = ( actionBtn = (
<div className='account--action-button'> <div className='account--action-button'>
<IconButton size={26} active icon='hourglass' title={intl.formatMessage(messages.requested)} onClick={this.props.onFollow} /> <IconButton size={26} active icon='hourglass' title={intl.formatMessage(messages.requested)} onClick={this.props.onFollow} />

Loading…
Cancel
Save