diff options
author | Dan Timoney <dtimoney@att.com> | 2019-02-20 19:19:39 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-02-20 19:19:39 +0000 |
commit | bbc2b94d8869a8bd7ce5f6d472f5b7a5c57fbc17 (patch) | |
tree | 106ff95358b69e7b789888f1d983ccbe79ab9442 /cds-ui/client | |
parent | 4a4fe2b34cc3072902d37ead2105f72538f20991 (diff) | |
parent | e745a41057725122fce78c1a43ec63094967cb8f (diff) |
Merge "Topology template model as array objects"
Diffstat (limited to 'cds-ui/client')
-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 |