Skip to content

Commit 4f7ceeb

Browse files
authored
fix: Use target="_blank" to redirect for footer version (#1166)
1 parent 88669fd commit 4f7ceeb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

site/src/components/Footer/Footer.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export const Footer: React.FC = ({ children }) => {
2727
</div>
2828
{buildInfoState.context.buildInfo && (
2929
<div className={styles.buildInfo}>
30-
<Link variant="caption" href={buildInfoState.context.buildInfo.external_url}>
30+
<Link variant="caption" target="_blank" href={buildInfoState.context.buildInfo.external_url}>
3131
{Language.buildInfoText(buildInfoState.context.buildInfo)}
3232
</Link>
3333
</div>

0 commit comments

Comments
 (0)