Skip to content

Commit

Permalink
fix(workbench): adjust action to fall through and load history datase…
Browse files Browse the repository at this point in the history
…t if path is provided
  • Loading branch information
ramfox committed Apr 20, 2020
1 parent da26298 commit a16367b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/reducers/workingDataset.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ const workingDatasetsReducer: Reducer = (state = initialState, action: AnyAction
isLoading: false,
components: {
readme: {
value: dataset && dataset.readme ? atob(dataset.readme.scriptBytes) : undefined
value: dataset && dataset.readme && dataset.readme.scriptBytes ? atob(dataset.readme.scriptBytes) : undefined
},
body: state.components.body,
meta: {
Expand Down

0 comments on commit a16367b

Please sign in to comment.