From 2e112e240666b62b8c3d4fa201fb24b841f6c92b Mon Sep 17 00:00:00 2001 From: Yamagishi Kazutoshi Date: Sun, 21 May 2017 00:31:47 +0900 Subject: Improve eslint rules (#3147) * Add semi to ESLint rules * Add padded-blocks to ESLint rules * Add comma-dangle to ESLint rules * add config/webpack and storyboard * add streaming/ * yarn test:lint -- --fix --- app/javascript/mastodon/reducers/alerts.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'app/javascript/mastodon/reducers/alerts.js') diff --git a/app/javascript/mastodon/reducers/alerts.js b/app/javascript/mastodon/reducers/alerts.js index dc0145824..aaea9775f 100644 --- a/app/javascript/mastodon/reducers/alerts.js +++ b/app/javascript/mastodon/reducers/alerts.js @@ -1,7 +1,7 @@ import { ALERT_SHOW, ALERT_DISMISS, - ALERT_CLEAR + ALERT_CLEAR, } from '../actions/alerts'; import Immutable from 'immutable'; @@ -13,7 +13,7 @@ export default function alerts(state = initialState, action) { return state.push(Immutable.Map({ key: state.size > 0 ? state.last().get('key') + 1 : 0, title: action.title, - message: action.message + message: action.message, })); case ALERT_DISMISS: return state.filterNot(item => item.get('key') === action.alert.key); -- cgit