aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-ui/src/app/ng2/services/responses/component-generic-response.ts
diff options
context:
space:
mode:
authoraribeiro <anderson.ribeiro@est.tech>2020-08-21 18:04:52 +0100
committerSébastien Determe <sebastien.determe@intl.att.com>2020-09-07 07:11:49 +0000
commit0c61108fca142e7e6a9d59453e3b14f2b402e89d (patch)
treea5f11f4255e6c9259ab853ebd2e6a03f95214d78 /catalog-ui/src/app/ng2/services/responses/component-generic-response.ts
parent38511702dcdbf1f78b6457509e9c276bee36279a (diff)
Enable node_filter update action
Issue-ID: SDC-3257 Signed-off-by: aribeiro <anderson.ribeiro@est.tech> Change-Id: Id8ae9a7bfe941aa11891f472e830b4ca59b3e839
Diffstat (limited to 'catalog-ui/src/app/ng2/services/responses/component-generic-response.ts')
-rw-r--r--catalog-ui/src/app/ng2/services/responses/component-generic-response.ts6
1 files changed, 3 insertions, 3 deletions
diff --git a/catalog-ui/src/app/ng2/services/responses/component-generic-response.ts b/catalog-ui/src/app/ng2/services/responses/component-generic-response.ts
index 2c502d9fd5..c6be9c369a 100644
--- a/catalog-ui/src/app/ng2/services/responses/component-generic-response.ts
+++ b/catalog-ui/src/app/ng2/services/responses/component-generic-response.ts
@@ -56,7 +56,7 @@ export class ComponentGenericResponse implements Serializable<ComponentGenericR
public interfaceOperations:Array<OperationModel>;
public additionalInformation:any;
public derivedList:Array<any>;
- public nodeFilterData: Array<any>;
+ public nodeFilterforNode: Array<any>;
public substitutionFilterForTopologyTemplate: Array<any>;
deserialize (response): ComponentGenericResponse {
@@ -120,8 +120,8 @@ export class ComponentGenericResponse implements Serializable<ComponentGenericR
if(response.policies) {
this.policies = CommonUtils.initPolicies(response.policies);
}
- if(response.nodeFilterData) {
- this.nodeFilterData = response.nodeFilterData;
+ if(response.nodeFilterforNode) {
+ this.nodeFilterforNode = response.nodeFilterforNode;
}
if(response.substitutionFilterForTopologyTemplate) {
this.substitutionFilterForTopologyTemplate = response.substitutionFilterForTopologyTemplate;