From: KrupaNagabhushan Date: Mon, 13 Mar 2023 18:12:43 +0000 (+0000) Subject: Fix Property with '::' in name produces wrong Input X-Git-Tag: 1.12.3~7 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=955953b295b31b33e6b8af5a767d9ef18964a65c;p=sdc.git Fix Property with '::' in name produces wrong Input Issue-ID: SDC-4431 Signed-off-by: KrupaNagabhushan Change-Id: Ieaf9b99493511145c2d6a3d5ec31bdf0e36cd8b2 --- diff --git a/catalog-ui/src/app/ng2/pages/properties-assignment/properties-assignment.page.component.html b/catalog-ui/src/app/ng2/pages/properties-assignment/properties-assignment.page.component.html index 36d316ee5d..1d8a01d4c8 100644 --- a/catalog-ui/src/app/ng2/pages/properties-assignment/properties-assignment.page.component.html +++ b/catalog-ui/src/app/ng2/pages/properties-assignment/properties-assignment.page.component.html @@ -83,7 +83,7 @@ [disabled]="(checkedPropertiesCount != 1 || isReadonly || hasChangedData) && !enableToscaFunction" class="tlv-btn blue declare-button" data-tests-id="declare-button select-tosca-function">{{'TOSCA_FUNCTION_LABEL' | translate}} - + diff --git a/catalog-ui/src/app/ng2/pages/properties-assignment/properties-assignment.page.component.ts b/catalog-ui/src/app/ng2/pages/properties-assignment/properties-assignment.page.component.ts index ada12ad2e2..17bb1a63cc 100644 --- a/catalog-ui/src/app/ng2/pages/properties-assignment/properties-assignment.page.component.ts +++ b/catalog-ui/src/app/ng2/pages/properties-assignment/properties-assignment.page.component.ts @@ -739,8 +739,16 @@ export class PropertiesAssignmentComponent { }); } + declareInput = (): void => { + if (this.checkedPropertiesCount == 1) { + this.openAddInputNameAndDeclareInputModal(); + } else if (this.checkedPropertiesCount > 1) { + this.declareInputFromProperties(); + } + } + /*** DECLARE PROPERTIES/INPUTS ***/ - declareInputFromProperties = (inputName:string): void => { + declareInputFromProperties = (inputName?: string): void => { console.debug("==>" + this.constructor.name + ": declareProperties"); let selectedComponentInstancesProperties: InstanceBePropertiesMap = new InstanceBePropertiesMap(); @@ -831,7 +839,7 @@ export class PropertiesAssignmentComponent { let inputName: string; if (propertyName) { if (propertyName.includes("::")) { - propertyName = propertyName.replace("::", "_"); + propertyName = propertyName.replace(/::/g, "_"); } if (componentName) { inputName = componentName + "_" + propertyName;