[Glitch] Replace unlock-alt icon with unlock

Port 6513f6c953 to glitch-soc
This commit is contained in:
Thibaut Girka
2019-02-01 16:15:44 +01:00
parent e87bd6d94a
commit 2e93f87c9f
6 changed files with 7 additions and 7 deletions

View File

@@ -85,7 +85,7 @@ export default 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'])) {