diff options
Diffstat (limited to 'catalog-ui/src/app/ng2/services/responses')
-rw-r--r-- | catalog-ui/src/app/ng2/services/responses/component-generic-response.ts | 4 |
1 files changed, 4 insertions, 0 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 301b3a4c9b..2c502d9fd5 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 @@ -57,6 +57,7 @@ export class ComponentGenericResponse implements Serializable<ComponentGenericR public additionalInformation:any; public derivedList:Array<any>; public nodeFilterData: Array<any>; + public substitutionFilterForTopologyTemplate: Array<any>; deserialize (response): ComponentGenericResponse { @@ -122,6 +123,9 @@ export class ComponentGenericResponse implements Serializable<ComponentGenericR if(response.nodeFilterData) { this.nodeFilterData = response.nodeFilterData; } + if(response.substitutionFilterForTopologyTemplate) { + this.substitutionFilterForTopologyTemplate = response.substitutionFilterForTopologyTemplate; + } return this; } } |