Merge branch 'showable-password-icons' into 'develop'

ShowablePassword: switch icons

See merge request soapbox-pub/soapbox-fe!925
This commit is contained in:
Alex Gleason 2021-12-20 16:42:38 +00:00
commit de35a72a20

View file

@ -40,7 +40,7 @@ class ShowablePassword extends ImmutablePureComponent {
const revealButton = (
<IconButton
src={revealed ? require('@tabler/icons/icons/eye.svg') : require('@tabler/icons/icons/eye-off.svg')}
src={revealed ? require('@tabler/icons/icons/eye-off.svg') : require('@tabler/icons/icons/eye.svg')}
onClick={this.toggleReveal}
title={intl.formatMessage(revealed ? messages.hidePassword : messages.showPassword)}
/>