diff options
Diffstat (limited to 'app/client')
| -rw-r--r-- | app/client/modules/samplernn/samplernn.actions.js | 1 | ||||
| -rw-r--r-- | app/client/system/system.reducer.js | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/app/client/modules/samplernn/samplernn.actions.js b/app/client/modules/samplernn/samplernn.actions.js index f5246fa..5324807 100644 --- a/app/client/modules/samplernn/samplernn.actions.js +++ b/app/client/modules/samplernn/samplernn.actions.js @@ -75,7 +75,6 @@ export const load_directories = (id) => (dispatch) => { }) output.map(file => { - return file.uuid = uuidv1() fileLookup[file.uuid] = file const pair = file.name.split('.')[0].split('-') diff --git a/app/client/system/system.reducer.js b/app/client/system/system.reducer.js index 0deb3cb..55bbfee 100644 --- a/app/client/system/system.reducer.js +++ b/app/client/system/system.reducer.js @@ -223,7 +223,7 @@ const systemReducer = (state = systemInitialState, action) => { case types.system.stderr: return { ...state, - stderr: state.stderr + action.data, + stderr: state.stderr + action.data.data, } default: return state |
