0
0
Fork 0

Replace unlock-alt icon with unlock (#9952)

This commit is contained in:
Clar Charr 2019-01-31 07:45:15 -05:00 committed by Eugen Rochko
parent 6c513c75ef
commit 6513f6c953
5 changed files with 5 additions and 5 deletions

View file

@ -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>
);
}