mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-01-31 22:18:07 +08:00
fix: 解决编辑证书时,其他域名格式不正确问题 (#4991)
#### 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.
This commit is contained in:
parent
b3ce35d516
commit
81835ef9a7
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user