aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-ui
diff options
context:
space:
mode:
authorvasraz <vasyl.razinkov@est.tech>2023-08-15 18:01:22 +0100
committerJEFF VAN DAM <jeff.van.dam@est.tech>2023-08-16 14:34:13 +0000
commitadb7f7496af6e71e1cced44ee2f7485c9917a806 (patch)
treef5c3f2656862e4438ee0950edbc0aa99fc5a3bc8 /catalog-ui
parente489b852c39e45f43c7113abbfd439b29fc35348 (diff)
Add DOT to property's name permitted chars
Signed-off-by: Vasyl Razinkov <vasyl.razinkov@est.tech> Change-Id: Ib17edf63731832064003430c6f33e9ec58fca696 Issue-ID: SDC-4597
Diffstat (limited to 'catalog-ui')
-rw-r--r--catalog-ui/src/app/app.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/catalog-ui/src/app/app.ts b/catalog-ui/src/app/app.ts
index e3d202b2a1..916815e5e4 100644
--- a/catalog-ui/src/app/app.ts
+++ b/catalog-ui/src/app/app.ts
@@ -610,7 +610,7 @@ ng1appModule.config([
ng1appModule.value('ValidationPattern', /^[\s\w\&_.:-]{1,1024}$/);
ng1appModule.value('ComponentNameValidationPattern', /^(?=.*[^. ])[\s\w\&_.:-]{1,1024}$/); // DE250513 - same as ValidationPattern above, plus requirement that name not consist of dots and/or spaces alone.
-ng1appModule.value('PropertyNameValidationPattern', /^[a-zA-Z0-9_:-@]{1,100}$/); // DE210977
+ng1appModule.value('PropertyNameValidationPattern', /^[a-zA-Z0-9._:\-@]{1,100}$/); // DE210977
ng1appModule.value('TagValidationPattern', /^[\s\w_.-]{1,50}$/);
ng1appModule.value('VendorReleaseValidationPattern', /^[\x20-\x21\x23-\x29\x2B-\x2E\x30-\x39\x3B\x3D\x40-\x5B\x5D-\x7B\x7D-\xFF]{1,25}$/);
ng1appModule.value('VendorNameValidationPattern', /^[\x20-\x21\x23-\x29\x2B-\x2E\x30-\x39\x3B\x3D\x40-\x5B\x5D-\x7B\x7D-\xFF]{1,60}$/);