aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-ui
diff options
context:
space:
mode:
authorJvD_Ericsson <jeff.van.dam@est.tech>2022-11-07 12:32:05 +0000
committerVasyl Razinkov <vasyl.razinkov@est.tech>2022-11-23 10:42:39 +0000
commitb438d70f1262956f94348ff2902b6a472b5eb360 (patch)
tree830e431f7e108b703575ed01d8b6c2cb00701dc9 /catalog-ui
parent166d45efe6de92ce067bc7b6065a0d7de94a6388 (diff)
Fix changing property in node filter issue
Changing from a non collection property to a collection property casused the "Add value to list" button to not appear Issue-ID: SDC-4253 Change-Id: I74df0b706c1b7bd7edd57bd05c3043e8c2dd2d1d Signed-off-by: JvD_Ericsson <jeff.van.dam@est.tech>
Diffstat (limited to 'catalog-ui')
-rw-r--r--catalog-ui/src/app/ng2/components/logic/properties-table/dynamic-property/dynamic-property.component.ts12
1 files changed, 8 insertions, 4 deletions
diff --git a/catalog-ui/src/app/ng2/components/logic/properties-table/dynamic-property/dynamic-property.component.ts b/catalog-ui/src/app/ng2/components/logic/properties-table/dynamic-property/dynamic-property.component.ts
index 8c8d1e28ba..6b018c160a 100644
--- a/catalog-ui/src/app/ng2/components/logic/properties-table/dynamic-property/dynamic-property.component.ts
+++ b/catalog-ui/src/app/ng2/components/logic/properties-table/dynamic-property/dynamic-property.component.ts
@@ -73,11 +73,9 @@ export class DynamicPropertyComponent {
this.propPath = (this.property instanceof PropertyFEModel) ? this.property.name : this.property.propertiesName;
this.nestedLevel = (this.property.propertiesName.match(/#/g) || []).length;
this.rootProperty = (this.rootProperty) ? this.rootProperty : <PropertyFEModel>this.property;
- this.propertyTestsId = this.getPropertyTestsId();
-
+ this.propertyTestsId = this.getPropertyTestsId();
+
this.initConsraintsValues();
-
-
}
initConsraintsValues(){
@@ -110,6 +108,12 @@ export class DynamicPropertyComponent {
}
}
+ ngOnChanges() {
+ this.propType = this.property.derivedDataType;
+ this.propPath = (this.property instanceof PropertyFEModel) ? this.property.name : this.property.propertiesName;
+ this.propertyTestsId = this.getPropertyTestsId();
+ }
+
onClickPropertyRow = (property, event) => {
// Because DynamicPropertyComponent is recrusive second time the event is fire event.stopPropagation = undefined