From: xuegao Date: Thu, 15 Jul 2021 06:56:52 +0000 (+0200) Subject: Fix type issue X-Git-Tag: 1.9.1~84 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=f94241f6b5f25ddda29e505306b16af7f5b82749;p=sdc.git 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 --- 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; }