Add colour to follow button when hashtag is being followed (#24361)
This commit is contained in:
		
					parent
					
						
							
								23813e23b3
							
						
					
				
			
			
				commit
				
					
						77bd32a26a
					
				
			
		
					 1 changed files with 5 additions and 1 deletions
				
			
		|  | @ -191,8 +191,12 @@ class HashtagTimeline extends React.PureComponent { | |||
|     if (tag) { | ||||
|       const following = tag.get('following'); | ||||
| 
 | ||||
|       const classes = classNames('column-header__button', { | ||||
|         active: following, | ||||
|       }); | ||||
| 
 | ||||
|       followButton = ( | ||||
|         <button className={classNames('column-header__button')} onClick={this.handleFollow} disabled={!signedIn} active={following} title={intl.formatMessage(following ? messages.unfollowHashtag : messages.followHashtag)} aria-label={intl.formatMessage(following ? messages.unfollowHashtag : messages.followHashtag)}> | ||||
|         <button className={classes} onClick={this.handleFollow} disabled={!signedIn} title={intl.formatMessage(following ? messages.unfollowHashtag : messages.followHashtag)} aria-label={intl.formatMessage(following ? messages.unfollowHashtag : messages.followHashtag)}> | ||||
|           <Icon id={following ? 'user-times' : 'user-plus'} fixedWidth className='column-header__icon' /> | ||||
|         </button> | ||||
|       ); | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue