Skip to content

Commit 1dd72e0

Browse files
authored
[Bug-Fix][Manager] fix swapping space name and user name when creating space bug. (apache#2)
fix swapping space name and user name when creating space bug. (apache#2)
1 parent 2a15312 commit 1dd72e0

File tree

1 file changed

+2
-2
lines changed
  • manager/doris-manager/src/routes/super-admin/space/new-space

1 file changed

+2
-2
lines changed

manager/doris-manager/src/routes/super-admin/space/new-space/new-space.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,11 @@ const SpaceNew = () => {
4545
queryPort: cluValues.queryPort,
4646
user: cluValues.user,
4747
},
48-
name: values.userName,
48+
name: values.name,
4949
describe: values.describe,
5050
user: {
5151
email: values.email,
52-
name: values.name,
52+
name: values.userName,
5353
password: values.password,
5454
},
5555
}).then(res => {

0 commit comments

Comments
 (0)