Browse Source

Create or update users to add tenants cannot be empty verification. #7594 (#7956)

2.0.7-release
Kerwin 2 years ago committed by GitHub
parent
commit
ddd516cb96
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      dolphinscheduler-ui/src/js/conf/home/pages/security/pages/users/_source/createUser.vue

6
dolphinscheduler-ui/src/js/conf/home/pages/security/pages/users/_source/createUser.vue

@ -191,6 +191,12 @@
}
}
// Verify tenant
if (!this.tenantId) {
this.$message.warning(`${i18n.$t('select tenant')}`)
return false
}
// email
if (!this.email) {
this.$message.warning(`${i18n.$t('Please enter email')}`)

Loading…
Cancel
Save