Skip to content

Commit

Permalink
feat(frontend): open links in new tab
Browse files Browse the repository at this point in the history
  • Loading branch information
Data5tream committed Jul 26, 2023
1 parent 2abebb0 commit a2b7ab9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/lib/components/StatusEntry.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<div class="content">
Status: <StatusIcon status={data.status} />&nbsp;{statusMsg}<br />
{#if data.watchpoint.kind === 'url'}
URL: <a href={data.watchpoint.target} class="url">{data.watchpoint.target}</a>
URL: <a href={data.watchpoint.target} class="url" target='_blank' rel='noreferrer'>{data.watchpoint.target}</a>
{/if}
</div>
</div>
Expand Down

0 comments on commit a2b7ab9

Please sign in to comment.