summaryrefslogtreecommitdiffstats
path: root/openecomp-ui
diff options
context:
space:
mode:
authorxuegao <xue.gao@intl.att.com>2021-07-15 08:56:52 +0200
committerxuegao <xue.gao@intl.att.com>2021-07-15 10:00:04 +0200
commitf94241f6b5f25ddda29e505306b16af7f5b82749 (patch)
tree3ea56577ea2f10f5c49198b5ed318354b0b040df /openecomp-ui
parent84f4b054a72b7d1dd44dec5d91623595e4563ab7 (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')
-rw-r--r--openecomp-ui/src/sdc-app/onboarding/softwareProduct/landingPage/SoftwareProductLandingPageView.jsx2
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;
}