You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@apisix.apache.org by ju...@apache.org on 2020/05/21 03:56:05 UTC

[incubator-apisix-dashboard] branch feat-layout updated: fix: ssl create

This is an automated email from the ASF dual-hosted git repository.

juzhiyuan pushed a commit to branch feat-layout
in repository https://gitbox.apache.org/repos/asf/incubator-apisix-dashboard.git


The following commit(s) were added to refs/heads/feat-layout by this push:
     new 385c98c  fix: ssl create
385c98c is described below

commit 385c98cfc065de28a1a32673840e75e472301ab4
Author: juzhiyuan <jj...@gmail.com>
AuthorDate: Thu May 21 11:55:42 2020 +0800

    fix: ssl create
---
 src/pages/ssl/components/Step3/index.tsx | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/src/pages/ssl/components/Step3/index.tsx b/src/pages/ssl/components/Step3/index.tsx
index 10e5ab4..e1a921c 100644
--- a/src/pages/ssl/components/Step3/index.tsx
+++ b/src/pages/ssl/components/Step3/index.tsx
@@ -8,8 +8,7 @@ const Step3: React.FC<StepProps> = ({ data, onStepChange }) => {
   const [form] = Form.useForm();
   const submit = () => {
     createSSL({
-      // sni: data.sni!.split(';'),
-      sni: 'www.baidu.com',
+      sni: data.sni!.split(';'),
       cert: data.cert!,
       key: data.key!,
     }).then(() => {