소스 검색

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

Kerwin 3 년 전
부모
커밋
64efc65edf
1개의 변경된 파일6개의 추가작업 그리고 0개의 파일을 삭제
  1. 6 0
      dolphinscheduler-ui/src/js/conf/home/pages/security/pages/users/_source/createUser.vue

+ 6 - 0
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')}`)