Skip to content

Commit

Permalink
Merge pull request #44 from guardian/da_fix_job_url
Browse files Browse the repository at this point in the history
Fix Vidispine Job URL
  • Loading branch information
Dala0 authored Oct 25, 2023
2 parents c4206c9 + 73caf02 commit 56f02ea
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion app/ItemView/JobDataView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,10 @@ const JobDataView: React.FC<JobDataViewProps> = (props) => {
<TableRow
hover
onClick={() => {
window.open(`/vs-jobs/job/${entry.jobId}`, "_blank");
window.open(
`/vidispine-jobs/job/${entry.jobId}`,
"_blank"
);
}}
key={entry.jobId}
className={classes.tableRow}
Expand Down

0 comments on commit 56f02ea

Please sign in to comment.