aboutsummaryrefslogtreecommitdiff
path: root/src/reducers
diff options
context:
space:
mode:
authorShin'ya Ueoka <ueokande@i-beam.org>2017-10-08 08:58:11 +0900
committerShin'ya Ueoka <ueokande@i-beam.org>2017-10-08 09:54:15 +0900
commit944683a2d8f9a165c490d05c350fdc689bdb6c85 (patch)
treed628defb539c6a02f6e1ab9d88b80bd039e94662 /src/reducers
parentea455059bd0af542f3e8c723fc7774e74b8abffe (diff)
use key instead of keyCode in follow
Diffstat (limited to 'src/reducers')
-rw-r--r--src/reducers/follow.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/reducers/follow.js b/src/reducers/follow.js
index a2397b4..27543ec 100644
--- a/src/reducers/follow.js
+++ b/src/reducers/follow.js
@@ -3,7 +3,7 @@ import actions from 'actions';
const defaultState = {
enabled: false,
newTab: false,
- keys: [],
+ keys: '',
};
export default function reducer(state = defaultState, action = {}) {
@@ -19,7 +19,7 @@ export default function reducer(state = defaultState, action = {}) {
});
case actions.FOLLOW_KEY_PRESS:
return Object.assign({}, state, {
- keys: state.keys.concat([action.key]),
+ keys: state.keys + action.key,
});
case actions.FOLLOW_BACKSPACE:
return Object.assign({}, state, {