diff options
author | imamSidero <imam.hussain@est.tech> | 2022-10-11 14:23:30 +0100 |
---|---|---|
committer | Michael Morris <michael.morris@est.tech> | 2022-10-17 14:57:35 +0000 |
commit | c39e7d3aa7bc26b1378fc6d29660c8be466dad45 (patch) | |
tree | c6886b3147f1130138df646dd4c50a66f3272cc9 /catalog-ui/src/app/utils | |
parent | c3462d9ccaf7a89b38b8228938c99df451b1189b (diff) |
Increase character limit of VFC property name to 100 and allow @ character
VFC property name character limit is increased to 100 and allowing @ special character
Signed-off-by: imamSidero <imam.hussain@est.tech>
Issue-ID: SDC-4210
Change-Id: If7f0be254a62effe34ad426ba24eeb31f034dd3f
Diffstat (limited to 'catalog-ui/src/app/utils')
-rw-r--r-- | catalog-ui/src/app/utils/constants.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/catalog-ui/src/app/utils/constants.ts b/catalog-ui/src/app/utils/constants.ts index d6710ed767..0de83d257e 100644 --- a/catalog-ui/src/app/utils/constants.ts +++ b/catalog-ui/src/app/utils/constants.ts @@ -165,6 +165,7 @@ export class PROPERTY_DATA { export class PROPERTY_VALUE_CONSTRAINTS { public static MAX_LENGTH = 2500; public static JSON_MAX_LENGTH = 4096; + public static NAME_MAX_LENGTH = 100; } export class Role { |