This is an automated email from the ASF dual-hosted git repository. jiafengzheng pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-doris-manager.git
The following commit(s) were added to refs/heads/master by this push: new 1dd72e0 [Bug-Fix][Manager] fix swapping space name and user name when creating space bug. (#2) 1dd72e0 is described below commit 1dd72e007ae1167afe5e8b4620b7616124e3b20d Author: Hao Wang <1727386...@qq.com> AuthorDate: Sun Mar 6 17:30:00 2022 +0800 [Bug-Fix][Manager] fix swapping space name and user name when creating space bug. (#2) fix swapping space name and user name when creating space bug. (#2) --- .../src/routes/super-admin/space/new-space/new-space.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/manager/doris-manager/src/routes/super-admin/space/new-space/new-space.tsx b/manager/doris-manager/src/routes/super-admin/space/new-space/new-space.tsx index 5cfdb1c..789f6d5 100644 --- a/manager/doris-manager/src/routes/super-admin/space/new-space/new-space.tsx +++ b/manager/doris-manager/src/routes/super-admin/space/new-space/new-space.tsx @@ -45,11 +45,11 @@ const SpaceNew = () => { queryPort: cluValues.queryPort, user: cluValues.user, }, - name: values.userName, + name: values.name, describe: values.describe, user: { email: values.email, - name: values.name, + name: values.userName, password: values.password, }, }).then(res => { --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org