Skip to content

Commit

Permalink
fix download: make url absolute
Browse files Browse the repository at this point in the history
  • Loading branch information
dennishendriksen committed Dec 9, 2024
1 parent 541cfc9 commit bace26b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vip-web-frontend/src/views/Jobs.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ const Jobs: Component = () => {
</td>
<td>
<Show when={job.report} fallback={<span class="icon" />}>
<A href={`/api/job/${job.id}/report`} target="_self">
<A href={window.location.origin + `/api/job/${job.id}/report`} target="_self">
<span class="icon is-left is-clickable" title="Download report">
<i class="fas fa-download" />
</span>
Expand Down

0 comments on commit bace26b

Please sign in to comment.