Allow maximum length of tld in email validation (#5792)

Signed-off-by: Rafal Wicha <rafal@ksoc.com>
This commit is contained in:
Rafał Wicha
2025-05-21 23:03:28 +01:00
committed by GitHub
parent ea74f584b1
commit 893d45bdbf
@@ -67,7 +67,7 @@
$: {
if (format == 'email') {
pattern = '^[\\w-+.]+@([\\w-]+\\.)+[\\w-]{2,4}$'
pattern = '^[\\w-+.]+@([\\w-]+\\.)+[\\w-]{2,63}$'
}
}