From ab5d2eca1fbdbd17a4913229cd5812337d9ed7be Mon Sep 17 00:00:00 2001 From: まっちゃとーにゅ <17376330+u1-liquid@users.noreply.github.com> Date: Fri, 8 Dec 2023 17:48:18 +0900 Subject: enhance(frontend): window.openやaタグにnoopenerオプションをつける (MisskeyIO#283) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/frontend/src/pages/instance-info.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'packages/frontend/src/pages/instance-info.vue') diff --git a/packages/frontend/src/pages/instance-info.vue b/packages/frontend/src/pages/instance-info.vue index 93d74fb42e..97dc0a8633 100644 --- a/packages/frontend/src/pages/instance-info.vue +++ b/packages/frontend/src/pages/instance-info.vue @@ -218,7 +218,7 @@ const headerActions = computed(() => [{ text: `https://${props.host}`, icon: 'ti ti-external-link', handler: () => { - window.open(`https://${props.host}`, '_blank'); + window.open(`https://${props.host}`, '_blank', 'noopener'); }, }]); -- cgit v1.2.3-freya