Browse Source

Add trailing comma in mapStateToProps

Consistency, eslint, etc.
closed-social-glitch-2
David Yip 6 years ago
committed by GitHub
parent
commit
2a386ad88d
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      app/javascript/mastodon/features/ui/index.js

+ 1
- 1
app/javascript/mastodon/features/ui/index.js View File

@ -56,7 +56,7 @@ const mapStateToProps = state => ({
hasComposingText: state.getIn(['compose', 'text']) !== '',
layout: state.getIn(['local_settings', 'layout']),
isWide: state.getIn(['local_settings', 'stretch']),
navbarUnder: state.getIn(['local_settings', 'navbar_under'])
navbarUnder: state.getIn(['local_settings', 'navbar_under']),
});
const keyMap = {

Loading…
Cancel
Save