diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2017-09-17 08:59:12 +0900 |
---|---|---|
committer | Shin'ya Ueoka <ueokande@i-beam.org> | 2017-09-17 08:59:12 +0900 |
commit | 9ae814dfe45426f8df9b89b305392770344a7d50 (patch) | |
tree | db082d9cb2ec426010556dbc24ab439c9757afbd /src/reducers/console.js | |
parent | c5529958d53146c8c6826673abe6431a19f1924d (diff) |
more strict lint
Diffstat (limited to 'src/reducers/console.js')
-rw-r--r-- | src/reducers/console.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/reducers/console.js b/src/reducers/console.js index 27ccdc9..5c49c3b 100644 --- a/src/reducers/console.js +++ b/src/reducers/console.js @@ -12,7 +12,7 @@ export default function reducer(state = defaultState, action = {}) { switch (action.type) { case actions.CONSOLE_SHOW_COMMAND: return Object.assign({}, state, { - commandShown: true, + commandShown: true, commandText: action.text, errorShown: false, completions: [] |