From 2ec19fb7d42c72463a0c0fbf3a56e1cab5c9264a Mon Sep 17 00:00:00 2001 From: lewisay Date: Mon, 13 May 2024 11:52:30 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E8=A7=A3=E5=86=B3=E7=BC=96=E8=BE=91?= =?UTF-8?q?=E8=AF=81=E4=B9=A6=E6=97=B6=EF=BC=8C=E5=85=B6=E4=BB=96=E5=9F=9F?= =?UTF-8?q?=E5=90=8D=E6=A0=BC=E5=BC=8F=E4=B8=8D=E6=AD=A3=E7=A1=AE=E9=97=AE?= =?UTF-8?q?=E9=A2=98=20(#4991)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit #### What this PR does / why we need it? #### Summary of your change #### Please indicate you've done the following: - [ ] Made sure tests are passing and test coverage is added if needed. - [ ] Made sure commit message follow the rule of [Conventional Commits specification](https://www.conventionalcommits.org/). - [ ] Considered the docs impact and opened a new docs issue or PR with docs changes if needed. --- frontend/src/views/website/ssl/create/index.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/views/website/ssl/create/index.vue b/frontend/src/views/website/ssl/create/index.vue index 4b1b57ef5..a634427db 100644 --- a/frontend/src/views/website/ssl/create/index.vue +++ b/frontend/src/views/website/ssl/create/index.vue @@ -256,7 +256,7 @@ const acceptParams = (op: string, websiteSSL: Website.SSLDTO) => { ssl.value.primaryDomain = websiteSSL.primaryDomain; ssl.value.pushDir = websiteSSL.pushDir; ssl.value.dir = websiteSSL.dir; - ssl.value.otherDomains = websiteSSL.domains; + ssl.value.otherDomains = websiteSSL.domains?.replace(/,/g, '\n'); ssl.value.autoRenew = websiteSSL.autoRenew; ssl.value.description = websiteSSL.description; ssl.value.id = websiteSSL.id;