about summary refs log tree commit diff
path: root/app/javascript/flavours/glitch/features/account/components
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/features/account/components
parente87bd6d94ad3d9ae85adc48dae9b84e961385404 (diff)
[Glitch] Replace unlock-alt icon with unlock
Port 6513f6c953cdaad9118ea24a21f22fd2978bed28 to glitch-soc
Diffstat (limited to 'app/javascript/flavours/glitch/features/account/components')
-rw-r--r--app/javascript/flavours/glitch/features/account/components/header.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/javascript/flavours/glitch/features/account/components/header.js b/app/javascript/flavours/glitch/features/account/components/header.js
index dc5b1447b..96696c2a5 100644
--- a/app/javascript/flavours/glitch/features/account/components/header.js
+++ b/app/javascript/flavours/glitch/features/account/components/header.js
@@ -88,7 +88,7 @@ export default 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>
         );
       }