Replace unlock-alt icon with unlock (#9952)
This commit is contained in:
		
					parent
					
						
							
								6c513c75ef
							
						
					
				
			
			
				commit
				
					
						6513f6c953
					
				
			
		
					 5 changed files with 5 additions and 5 deletions
				
			
		|  | @ -170,7 +170,7 @@ module StreamEntriesHelper | |||
|     when 'public' | ||||
|       fa_icon 'globe fw' | ||||
|     when 'unlisted' | ||||
|       fa_icon 'unlock-alt fw' | ||||
|       fa_icon 'unlock fw' | ||||
|     when 'private' | ||||
|       fa_icon 'lock fw' | ||||
|     when 'direct' | ||||
|  |  | |||
|  | @ -88,7 +88,7 @@ class Account extends ImmutablePureComponent { | |||
|       if (requested) { | ||||
|         buttons = <IconButton disabled icon='hourglass' title={intl.formatMessage(messages.requested)} />; | ||||
|       } else if (blocking) { | ||||
|         buttons = <IconButton active icon='unlock-alt' title={intl.formatMessage(messages.unblock, { name: account.get('username') })} onClick={this.handleBlock} />; | ||||
|         buttons = <IconButton active icon='unlock' title={intl.formatMessage(messages.unblock, { name: account.get('username') })} onClick={this.handleBlock} />; | ||||
|       } else if (muting) { | ||||
|         let hidingNotificationsButton; | ||||
|         if (account.getIn(['relationship', 'muting_notifications'])) { | ||||
|  |  | |||
|  | @ -32,7 +32,7 @@ class Account extends ImmutablePureComponent { | |||
|           </span> | ||||
| 
 | ||||
|           <div className='domain__buttons'> | ||||
|             <IconButton active icon='unlock-alt' title={intl.formatMessage(messages.unblockDomain, { domain })} onClick={this.handleDomainUnblock} /> | ||||
|             <IconButton active icon='unlock' title={intl.formatMessage(messages.unblockDomain, { domain })} onClick={this.handleDomainUnblock} /> | ||||
|           </div> | ||||
|         </div> | ||||
|       </div> | ||||
|  |  | |||
|  | @ -132,7 +132,7 @@ class Header extends ImmutablePureComponent { | |||
|       } else if (account.getIn(['relationship', 'blocking'])) { | ||||
|         actionBtn = ( | ||||
|           <div className='account--action-button'> | ||||
|             <IconButton size={26} icon='unlock-alt' title={intl.formatMessage(messages.unblock, { name: account.get('username') })} onClick={this.props.onBlock} /> | ||||
|             <IconButton size={26} icon='unlock' title={intl.formatMessage(messages.unblock, { name: account.get('username') })} onClick={this.props.onBlock} /> | ||||
|           </div> | ||||
|         ); | ||||
|       } | ||||
|  |  | |||
|  | @ -214,7 +214,7 @@ class PrivacyDropdown extends React.PureComponent { | |||
| 
 | ||||
|     this.options = [ | ||||
|       { icon: 'globe', value: 'public', text: formatMessage(messages.public_short), meta: formatMessage(messages.public_long) }, | ||||
|       { icon: 'unlock-alt', value: 'unlisted', text: formatMessage(messages.unlisted_short), meta: formatMessage(messages.unlisted_long) }, | ||||
|       { icon: 'unlock', value: 'unlisted', text: formatMessage(messages.unlisted_short), meta: formatMessage(messages.unlisted_long) }, | ||||
|       { icon: 'lock', value: 'private', text: formatMessage(messages.private_short), meta: formatMessage(messages.private_long) }, | ||||
|       { icon: 'envelope', value: 'direct', text: formatMessage(messages.direct_short), meta: formatMessage(messages.direct_long) }, | ||||
|     ]; | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue