diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2020-06-09 19:28:01 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2020-06-09 19:28:01 +0200 |
| commit | 149a75f80c5fbd09329a2e7f87204e67a2c429df (patch) | |
| tree | f601ef3e186b04640094fb3ca23ddd4498273025 /frontend/views/page/page.reducer.js | |
| parent | 8a90618f30faa2955c395cc5d6c989259270a95b (diff) | |
add opacity slider and properly debounce it
Diffstat (limited to 'frontend/views/page/page.reducer.js')
| -rw-r--r-- | frontend/views/page/page.reducer.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/views/page/page.reducer.js b/frontend/views/page/page.reducer.js index 82ea178..1c66491 100644 --- a/frontend/views/page/page.reducer.js +++ b/frontend/views/page/page.reducer.js @@ -17,7 +17,7 @@ const initialState = crudState('page', { const reducer = crudReducer('page') export default function pageReducer(state = initialState, action) { - console.log(action.type, action) + // console.log(action.type, action) state = reducer(state, action) switch (action.type) { case types.tile.create: |
