about summary refs log tree commit diff
path: root/app/javascript/mastodon/components/account.js
diff options
context:
space:
mode:
authorClar Charr <clar@charr.xyz>2019-01-31 07:45:15 -0500
committerEugen Rochko <eugen@zeonfederated.com>2019-01-31 13:45:15 +0100
commit6513f6c953cdaad9118ea24a21f22fd2978bed28 (patch)
tree1ba50c6a45bcc6eceb80da48ad0a9d2b6bbe03f8 /app/javascript/mastodon/components/account.js
parent6c513c75efa7d9af646ffebb46c1e3b04f0824f8 (diff)
Replace unlock-alt icon with unlock (#9952)
Diffstat (limited to 'app/javascript/mastodon/components/account.js')
-rw-r--r--app/javascript/mastodon/components/account.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/javascript/mastodon/components/account.js b/app/javascript/mastodon/components/account.js
index 206030c00..2705a6001 100644
--- a/app/javascript/mastodon/components/account.js
+++ b/app/javascript/mastodon/components/account.js
@@ -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'])) {