aboutsummaryrefslogtreecommitdiffstats
path: root/openecomp-ui
diff options
context:
space:
mode:
Diffstat (limited to 'openecomp-ui')
-rw-r--r--openecomp-ui/src/nfvo-utils/i18n/en.json3
-rw-r--r--openecomp-ui/src/sdc-app/onboarding/softwareProduct/creation/SoftwareProductCreationView.jsx5
2 files changed, 5 insertions, 3 deletions
diff --git a/openecomp-ui/src/nfvo-utils/i18n/en.json b/openecomp-ui/src/nfvo-utils/i18n/en.json
index a5518efddd..7a2e66a4b3 100644
--- a/openecomp-ui/src/nfvo-utils/i18n/en.json
+++ b/openecomp-ui/src/nfvo-utils/i18n/en.json
@@ -387,7 +387,8 @@
"VendorSoftwareProduct/vendorName": "Vendor",
"VendorSoftwareProduct/onboardingOrigin": "Onboarding Origin",
"VendorSoftwareProduct/networkPackageName": "Network Package Name",
- "vsp.model.select.label": "Other Models",
+ "vsp.model.select.other.label": "Other Models",
+ "vsp.model.select.label": "Select Model(s)",
"EntitlementPool" : "Entitlement Pool",
"EntitlementPool/name" : "Name",
diff --git a/openecomp-ui/src/sdc-app/onboarding/softwareProduct/creation/SoftwareProductCreationView.jsx b/openecomp-ui/src/sdc-app/onboarding/softwareProduct/creation/SoftwareProductCreationView.jsx
index 51e883427a..b52a18494c 100644
--- a/openecomp-ui/src/sdc-app/onboarding/softwareProduct/creation/SoftwareProductCreationView.jsx
+++ b/openecomp-ui/src/sdc-app/onboarding/softwareProduct/creation/SoftwareProductCreationView.jsx
@@ -387,7 +387,7 @@ const ModelSelection = ({
data-test-id="model-option-default"
/>
<Input
- label={i18n('vsp.model.select.label')}
+ label={i18n('vsp.model.select.other.label')}
checked={modelOption === ModelOption.SELECTED}
isValid={genericFieldInfo.modelOption.isValid}
errorText={genericFieldInfo.modelOption.errorText}
@@ -398,7 +398,7 @@ const ModelSelection = ({
)
}
type="radio"
- data-test-id="model-option-selected"
+ data-test-id="model-option-other"
groupClassName="no-bottom-margin"
/>
</GridItem>
@@ -413,6 +413,7 @@ const ModelSelection = ({
onMultiSelectChanged={onSelectChanged}
value={selectedModelList}
clearable={true}
+ data-test-id="model-option-select"
placeholder={i18n('vsp.model.select.label')}
multi
/>