Skip to content

Commit

Permalink
feat: Open Logs in new tab
Browse files Browse the repository at this point in the history
  • Loading branch information
SvenKirschbaum committed Sep 13, 2024
1 parent e496168 commit 496a98c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/log-redirect/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ function ReportList(props: {title: string, latestPath: string, reports: Report[]
<List>
{reports.map((report) => (
<ListItem key={report.code}>
<Link href={REPORT_URL_PREFIX + report.code}>{report.title || '(No Report Title available )'}</Link>
<Link target={"_blank"} href={REPORT_URL_PREFIX + report.code}>{report.title || '(No Report Title available )'}</Link>
</ListItem>
))}
</List>
Expand Down

0 comments on commit 496a98c

Please sign in to comment.