about summary refs log tree commit diff
path: root/app/javascript/mastodon/features/account
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/features/account
parent6c513c75efa7d9af646ffebb46c1e3b04f0824f8 (diff)
Replace unlock-alt icon with unlock (#9952)
Diffstat (limited to 'app/javascript/mastodon/features/account')
-rw-r--r--app/javascript/mastodon/features/account/components/header.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/javascript/mastodon/features/account/components/header.js b/app/javascript/mastodon/features/account/components/header.js
index 2ab25cde4..4f6d0712d 100644
--- a/app/javascript/mastodon/features/account/components/header.js
+++ b/app/javascript/mastodon/features/account/components/header.js
@@ -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>
         );
       }