Skip to content

Commit a578b92

Browse files
authored
Merge pull request #39 from kata-containers/sprt-patch-1
ui: Open job links in new tab
2 parents 43926dc + c422945 commit a578b92

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/Dashboard.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ export default function Dashboard({ coco = false }) {
152152
: "⚠️";
153153
return (
154154
<span key={`${job.name}-runs-${run.run_num}`}>
155-
<a href={run.url}>
155+
<a href={run.url} target="_blank" rel="noopener noreferrer">
156156
{emoji} {run.run_num}
157157
</a>
158158
&nbsp;&nbsp;&nbsp;&nbsp;

0 commit comments

Comments
 (0)