Skip to content

Commit

Permalink
fix(workbench): if we are given a path, fall through and allow the co…
Browse files Browse the repository at this point in the history
…mmit to be fetched
  • Loading branch information
ramfox committed Apr 20, 2020
1 parent a16367b commit 73277ec
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion app/actions/workbench.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,9 @@ export function fetchWorkbench (qriRef: QriRef): LaunchedFetchesAction {
dispatch(fetchBody(routeUsername, routeName, -1))
dispatch(setCommitTitle(''))
dispatch(setCommitMessage(''))
return fetching
if (routePath === '') {
return fetching
}
}

const versionIsLoading = selectHistoryDatasetIsLoading(state)
Expand Down

0 comments on commit 73277ec

Please sign in to comment.