Add missing DAEMON_READY reducer
This commit is contained in:
parent
124cc54a77
commit
1f22a3353b
1 changed files with 6 additions and 0 deletions
|
@ -15,6 +15,12 @@ const defaultState = {
|
|||
hasSignature: false,
|
||||
}
|
||||
|
||||
reducers[types.DAEMON_READY] = function(state, action) {
|
||||
return Object.assign({}, state, {
|
||||
daemonReady: true,
|
||||
})
|
||||
}
|
||||
|
||||
reducers[types.NAVIGATE] = function(state, action) {
|
||||
return Object.assign({}, state, {
|
||||
currentPath: action.data.path,
|
||||
|
|
Loading…
Reference in a new issue