about summary refs log tree commit diff
path: root/app/javascript/flavours/glitch/components/account.js
diff options
context:
space:
mode:
authorThibaut Girka <thib@sitedethib.com>2019-02-01 16:15:44 +0100
committerThibaut Girka <thib@sitedethib.com>2019-02-01 16:15:44 +0100
commit2e93f87c9fd42f382d428e2d3902deb2b125c5fb (patch)
tree74bb30df4e3777cc0efdd8fa3b3aff6a68bb3e65 /app/javascript/flavours/glitch/components/account.js
parente87bd6d94ad3d9ae85adc48dae9b84e961385404 (diff)
[Glitch] Replace unlock-alt icon with unlock
Port 6513f6c953cdaad9118ea24a21f22fd2978bed28 to glitch-soc
Diffstat (limited to 'app/javascript/flavours/glitch/components/account.js')
-rw-r--r--app/javascript/flavours/glitch/components/account.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/javascript/flavours/glitch/components/account.js b/app/javascript/flavours/glitch/components/account.js
index 072c601e0..4fcafc509 100644
--- a/app/javascript/flavours/glitch/components/account.js
+++ b/app/javascript/flavours/glitch/components/account.js
@@ -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'])) {