diff options
author | xuegao <xue.gao@intl.att.com> | 2021-07-15 08:56:52 +0200 |
---|---|---|
committer | xuegao <xue.gao@intl.att.com> | 2021-07-15 10:00:04 +0200 |
commit | f94241f6b5f25ddda29e505306b16af7f5b82749 (patch) | |
tree | 3ea56577ea2f10f5c49198b5ed318354b0b040df /openecomp-ui/src | |
parent | 84f4b054a72b7d1dd44dec5d91623595e4563ab7 (diff) |
Fix type issue
Use "license" instead of "licence" to be consistent with the variable used in features.properties.erb
Issue-ID: SDC-3618
Change-Id: I58948ee8bcc4c4d2ad2d0b544e829869c05ae527
Signed-off-by: xuegao <xue.gao@intl.att.com>
Diffstat (limited to 'openecomp-ui/src')
-rw-r--r-- | openecomp-ui/src/sdc-app/onboarding/softwareProduct/landingPage/SoftwareProductLandingPageView.jsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openecomp-ui/src/sdc-app/onboarding/softwareProduct/landingPage/SoftwareProductLandingPageView.jsx b/openecomp-ui/src/sdc-app/onboarding/softwareProduct/landingPage/SoftwareProductLandingPageView.jsx index 3e320c4a24..0f18a44708 100644 --- a/openecomp-ui/src/sdc-app/onboarding/softwareProduct/landingPage/SoftwareProductLandingPageView.jsx +++ b/openecomp-ui/src/sdc-app/onboarding/softwareProduct/landingPage/SoftwareProductLandingPageView.jsx @@ -92,7 +92,7 @@ class SoftwareProductLandingPageView extends React.Component { getExternalLicenceFeatureState() { var licenseFeature = this.props.features.find( - feature => feature.name === 'EXTERNAL_LICENCE' + feature => feature.name === 'EXTERNAL_LICENSE' ); return licenseFeature ? licenseFeature.active : true; } |