diff options
author | Ezhilarasi <ezhrajam@in.ibm.com> | 2019-02-20 17:15:26 +0530 |
---|---|---|
committer | Ezhilarasi <ezhrajam@in.ibm.com> | 2019-02-20 17:15:33 +0530 |
commit | e745a41057725122fce78c1a43ec63094967cb8f (patch) | |
tree | 213a5f845aa4210cb428f923e274693c37f56a2b | |
parent | fa9bfa9fdc7e2a1afe09d6bca9106ec9651fb38e (diff) |
Topology template model as array objects
Change-Id: I3b1329c50dee37913978525ac0cc556fe0759d8f
Issue-ID: CCSDK-762
Signed-off-by: Ezhilarasi <ezhrajam@in.ibm.com>
-rw-r--r-- | cds-ui/client/src/app/common/core/store/models/itopologytemplate.model.ts | 6 |
1 files changed, 3 insertions, 3 deletions
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 |