eslint --fix

This commit is contained in:
Alex Gleason
2020-04-14 13:44:40 -05:00
parent 5cf3affcd8
commit fc72e39ff4
101 changed files with 1014 additions and 969 deletions

View File

@ -64,7 +64,7 @@ const makeMapStateToProps = () => {
const mapStateToProps = (state, props) => {
const status = getStatus(state, {
id: props.params.statusId,
username: props.params.username
username: props.params.username,
});
let ancestorsIds = Immutable.List();
@ -462,10 +462,11 @@ class Status extends ImmutablePureComponent {
aria-label={intl.formatMessage(status.get('hidden') ? messages.revealAll : messages.hideAll)}
onClick={this.handleToggleAll}
aria-pressed={
status.get('hidden') ? 'false' : 'true'}>
<Icon id={status.get('hidden') ? 'eye-slash' : 'eye'
status.get('hidden') ? 'false' : 'true'}
>
<Icon id={status.get('hidden') ? 'eye-slash' : 'eye'
}
/>
/>
</button>
)}
/>