From: Ezhilarasi Date: Wed, 20 Feb 2019 11:45:26 +0000 (+0530) Subject: Topology template model as array objects X-Git-Tag: 0.4.2~254^2 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=e745a41057725122fce78c1a43ec63094967cb8f;p=ccsdk%2Fcds.git Topology template model as array objects Change-Id: I3b1329c50dee37913978525ac0cc556fe0759d8f Issue-ID: CCSDK-762 Signed-off-by: Ezhilarasi --- diff --git a/cds-ui/client/src/app/common/core/store/models/itopologytemplate.model.ts b/cds-ui/client/src/app/common/core/store/models/itopologytemplate.model.ts index cadf4f9e3..7457f2f8c 100644 --- a/cds-ui/client/src/app/common/core/store/models/itopologytemplate.model.ts +++ b/cds-ui/client/src/app/common/core/store/models/itopologytemplate.model.ts @@ -20,7 +20,7 @@ limitations under the License. */ export interface ITopologyTemplate { - inputs: object; - node_template: object; - workflow: object; + inputs: object[]; + node_template: object[]; + workflow: object[]; } \ No newline at end of file