Browse Source

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

3.0.0/version-upgrade
Kerwin 3 years ago committed by GitHub
parent
commit
64efc65edf
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

@ -199,6 +199,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