From 6730acbdc8686bb37148f86966840676857f0db1 Mon Sep 17 00:00:00 2001 From: KrupaNagabhushan Date: Fri, 13 Aug 2021 12:53:23 +0100 Subject: Fix license key group and entitlement pools required fields Issue-ID: SDC-3664 Signed-off-by: KrupaNagabhushan Change-Id: Ic426cc57861673002f03e2fe4fee81c25474c4e0 --- .../licenseKeyGroups/LicenseKeyGroupsEditorReducer.js | 15 +++------------ 1 file changed, 3 insertions(+), 12 deletions(-) (limited to 'openecomp-ui/src/sdc-app/onboarding/licenseModel/licenseKeyGroups/LicenseKeyGroupsEditorReducer.js') diff --git a/openecomp-ui/src/sdc-app/onboarding/licenseModel/licenseKeyGroups/LicenseKeyGroupsEditorReducer.js b/openecomp-ui/src/sdc-app/onboarding/licenseModel/licenseKeyGroups/LicenseKeyGroupsEditorReducer.js index d3af8bea5c..a6e78076f2 100644 --- a/openecomp-ui/src/sdc-app/onboarding/licenseModel/licenseKeyGroups/LicenseKeyGroupsEditorReducer.js +++ b/openecomp-ui/src/sdc-app/onboarding/licenseModel/licenseKeyGroups/LicenseKeyGroupsEditorReducer.js @@ -49,10 +49,7 @@ export default (state = {}, action) => { description: { isValid: true, errorText: '', - validations: [ - { type: 'maxLength', data: 1000 }, - { type: 'validateName', data: true } - ] + validations: [{ type: 'maxLength', data: 1000 }] }, name: { isValid: true, @@ -81,10 +78,7 @@ export default (state = {}, action) => { increments: { isValid: true, errorText: '', - validations: [ - { type: 'maxLength', data: 120 }, - { type: 'validateName', data: true } - ] + validations: [{ type: 'maxLength', data: 120 }] }, startDate: { isValid: true, @@ -99,10 +93,7 @@ export default (state = {}, action) => { manufacturerReferenceNumber: { isValid: true, errorText: '', - validations: [ - { type: 'maxLength', data: 100 }, - { type: 'validateName', data: true } - ] + validations: [{ type: 'maxLength', data: 100 }] } } }; -- cgit 1.2.3-korg