diff options
Diffstat (limited to 'app/client/modules/samplernn/samplernn.actions.js')
| -rw-r--r-- | app/client/modules/samplernn/samplernn.actions.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/client/modules/samplernn/samplernn.actions.js b/app/client/modules/samplernn/samplernn.actions.js index 25c9699..70a8a30 100644 --- a/app/client/modules/samplernn/samplernn.actions.js +++ b/app/client/modules/samplernn/samplernn.actions.js @@ -44,7 +44,6 @@ export const load_directories = (id) => (dispatch) => { folder.datasets.push(dataset) return dataset } - // take all of the folders and put them in a lookup const folderLookup = folders.reduce((folderLookup, folder) => { folderLookup[folder.id] = { id: folder.id, name: folder.name, folder, datasets: [] } @@ -133,6 +132,7 @@ export const load_directories = (id) => (dispatch) => { }) if (id) { let folder = id === 'unsorted' ? folderLookup.unsorted : folderLookup[id] + console.log(id) dispatch({ type: types.samplernn.set_folder, folder: folder, |
