Skip to content

Commit

Permalink
Merge pull request #1059 from syucream/fix/download-link
Browse files Browse the repository at this point in the history
Fix download links shown in header menu
  • Loading branch information
hinashi authored Jan 29, 2024
2 parents c8f8a19 + 1544a4a commit 81fcc5a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/components/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ export const Header: FC = () => {
job.operation ==
JobOperations.EXPORT_SEARCH_RESULT_V2) &&
job.status == JobStatuses.DONE ? (
<a href={`/job/api/v2/download/${job.id}`}>
<a href={`/job/api/v2/${job.id}/download?encode=utf-8`}>
{jobTargetLabel(job)}
</a>
) : (
Expand Down

0 comments on commit 81fcc5a

Please sign in to comment.