Skip to content

Commit

Permalink
Fix wrong version number for file download dialog.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonesy committed Mar 4, 2020
1 parent 2991e1b commit 3171f05
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/modules/download/containers/downloads.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export default connect(mapStateToProps, {
onCloseDownloads: closeDownloads,
fetchFiles: ({ id, ids = [] }) =>
fetchFiles({
url: `/api/v2/files?request_id=${id}&ids=${ids.join(',')}`,
url: `/api/v1/files?request_id=${id}&ids=${ids.join(',')}`,
schema: filesListSchema,
}),
})(withRequest(Downloads));

0 comments on commit 3171f05

Please sign in to comment.