diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2019-12-19 16:56:36 +0100 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2019-12-19 16:56:36 +0100 |
| commit | 9c8cce44b2a7f7d3199cf75359842b5b32e70711 (patch) | |
| tree | ad74ea79d841036de5015c451844d50f19af098f /app/client/live | |
| parent | dab31bc4809e29df8137575f4e3533fa7ba88c96 (diff) | |
adding biggan module live interface
Diffstat (limited to 'app/client/live')
| -rw-r--r-- | app/client/live/live.reducer.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/app/client/live/live.reducer.js b/app/client/live/live.reducer.js index dfdf7ee..8112d31 100644 --- a/app/client/live/live.reducer.js +++ b/app/client/live/live.reducer.js @@ -23,9 +23,11 @@ const liveInitialState = { } const liveReducer = (state = liveInitialState, action) => { + console.log(action) let results; switch(action.type) { case types.socket.load_params: + console.log(action.opt) if (! action.opt || ! Object.keys(action.opt).length) { return state } |
