From af39e65094fe4fc40af3566c7ea4025f3b41903f Mon Sep 17 00:00:00 2001 From: tone <3341154833@qq.com> Date: Tue, 10 Jun 2025 15:03:28 +0800 Subject: [PATCH] =?UTF-8?q?=E4=B8=8B=E8=BD=BD=E5=AD=98=E5=82=A8=E6=96=87?= =?UTF-8?q?=E4=BB=B6=E5=9C=A8=E6=96=B0=E7=AA=97=E5=8F=A3=E6=89=93=E5=BC=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tone-page-web/app/console/(with-menu)/storage/page.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/tone-page-web/app/console/(with-menu)/storage/page.tsx b/tone-page-web/app/console/(with-menu)/storage/page.tsx index d84b05a..ccff0eb 100644 --- a/tone-page-web/app/console/(with-menu)/storage/page.tsx +++ b/tone-page-web/app/console/(with-menu)/storage/page.tsx @@ -122,6 +122,7 @@ export default function Page() { const a = document.createElement('a'); a.href = url; a.download = localFilename; + a.target = '_blank'; document.body.appendChild(a); a.click(); document.body.removeChild(a);