This is an automated email from the ASF dual-hosted git repository.
chenxingchun pushed a commit to branch 1.3.3-release
in repository https://gitbox.apache.org/repos/asf/incubator-dolphinscheduler.git
The following commit(s) were added to refs/heads/1.3.3-release by this push:
new fd74939 [Improvement-3720][ui] js mailbox verification fix
new 801d7bd Merge pull request #3782 from break60/1.3.3-release
fd74939 is described below
commit fd7493924cd42cc0b1a14a50f564c85d124fbe2f
Author: break60 <[email protected]>
AuthorDate: Mon Sep 21 17:15:57 2020 +0800
[Improvement-3720][ui] js mailbox verification fix
---
.../home/pages/projects/pages/definition/pages/list/_source/util.js | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/dolphinscheduler-ui/src/js/conf/home/pages/projects/pages/definition/pages/list/_source/util.js
b/dolphinscheduler-ui/src/js/conf/home/pages/projects/pages/definition/pages/list/_source/util.js
index 308af45..877f349 100644
---
a/dolphinscheduler-ui/src/js/conf/home/pages/projects/pages/definition/pages/list/_source/util.js
+++
b/dolphinscheduler-ui/src/js/conf/home/pages/projects/pages/definition/pages/list/_source/util.js
@@ -37,7 +37,7 @@ const warningTypeList = [
]
const isEmial = (val) => {
- let regEmail =
/^([a-zA-Z0-9]+[_|\-|\.]?)*[a-zA-Z0-9]+@([a-zA-Z0-9]+[_|\-|\.]?)*[a-zA-Z0-9]+\.[a-zA-Z]{2,3}$/
// eslint-disable-line
+ let regEmail =
/^([a-zA-Z0-9]+[_|\-|\.]?)*[a-zA-Z0-9]+@([a-zA-Z0-9]+[_|\-|\.]?)*[a-zA-Z0-9]+\.[a-zA-Z]{2,}$/
// eslint-disable-line
return regEmail.test(val)
}