Skip to content

Commit

Permalink
Merge pull request #284 from bcgov/hotfix/missing-file-downloads
Browse files Browse the repository at this point in the history
Fix wrong version number for file download dialog.
  • Loading branch information
BrandonSharratt authored Mar 4, 2020
2 parents 2991e1b + 3171f05 commit 44ba7e1
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 44ba7e1

Please sign in to comment.