From 06b17cb09e2aa67e148c2fb84b7cb64fe33e5e84 Mon Sep 17 00:00:00 2001 From: Miodec Date: Mon, 11 Jul 2022 14:05:59 +0200 Subject: [PATCH] opening profile links in a new tab closes #3325 --- frontend/src/ts/elements/profile.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/src/ts/elements/profile.ts b/frontend/src/ts/elements/profile.ts index 10b590e07..f9b2fb25b 100644 --- a/frontend/src/ts/elements/profile.ts +++ b/frontend/src/ts/elements/profile.ts @@ -112,14 +112,14 @@ export async function update( const git = profile.details?.socialProfiles.github; if (git) { socialsEl.append( - `` + `` ); } const twitter = profile.details?.socialProfiles.twitter; if (twitter) { socialsEl.append( - `` + `` ); } @@ -131,7 +131,7 @@ export async function update( if (website) { socialsEl.append( - `` + `` ); } }