[Glitch] Change “hide/show boosts from …” menu to be hidden when the account is muted
Port 9af0613629 to glitch-soc
Signed-off-by: Thibaut Girka <thib@sitedethib.com>
			
			
This commit is contained in:
		
							parent
							
								
									ab970f996b
								
							
						
					
					
						commit
						5b9ed6e0c1
					
				
					 1 changed files with 6 additions and 4 deletions
				
			
		|  | @ -186,11 +186,13 @@ class Header extends ImmutablePureComponent { | ||||||
|       menu.push({ text: intl.formatMessage(messages.domain_blocks), to: '/domain_blocks' }); |       menu.push({ text: intl.formatMessage(messages.domain_blocks), to: '/domain_blocks' }); | ||||||
|     } else { |     } else { | ||||||
|       if (account.getIn(['relationship', 'following'])) { |       if (account.getIn(['relationship', 'following'])) { | ||||||
|  |         if (!account.getIn(['relationship', 'muting'])) { | ||||||
|           if (account.getIn(['relationship', 'showing_reblogs'])) { |           if (account.getIn(['relationship', 'showing_reblogs'])) { | ||||||
|             menu.push({ text: intl.formatMessage(messages.hideReblogs, { name: account.get('username') }), action: this.props.onReblogToggle }); |             menu.push({ text: intl.formatMessage(messages.hideReblogs, { name: account.get('username') }), action: this.props.onReblogToggle }); | ||||||
|           } else { |           } else { | ||||||
|             menu.push({ text: intl.formatMessage(messages.showReblogs, { name: account.get('username') }), action: this.props.onReblogToggle }); |             menu.push({ text: intl.formatMessage(messages.showReblogs, { name: account.get('username') }), action: this.props.onReblogToggle }); | ||||||
|           } |           } | ||||||
|  |         } | ||||||
| 
 | 
 | ||||||
|         menu.push({ text: intl.formatMessage(account.getIn(['relationship', 'endorsed']) ? messages.unendorse : messages.endorse), action: this.props.onEndorseToggle }); |         menu.push({ text: intl.formatMessage(account.getIn(['relationship', 'endorsed']) ? messages.unendorse : messages.endorse), action: this.props.onEndorseToggle }); | ||||||
|         menu.push({ text: intl.formatMessage(messages.add_or_remove_from_list), action: this.props.onAddToList }); |         menu.push({ text: intl.formatMessage(messages.add_or_remove_from_list), action: this.props.onAddToList }); | ||||||
|  |  | ||||||
		Loading…
	
		Reference in a new issue