Support instance count on node template
[sdc.git] / catalog-ui / src / app / models / componentsInstances / componentInstance.ts
index 86411b2..e79c30e 100644 (file)
@@ -96,6 +96,7 @@ export class ComponentInstance implements IComponentInstance{
     public sourceModelUuid:string;
     public minOccurrences: string;
     public maxOccurrences: string;
+    public instanceCount: string;
     //custom properties
     public certified:boolean;
     public iconSprite:string;
@@ -141,6 +142,7 @@ export class ComponentInstance implements IComponentInstance{
             this.interfaces = componentInstance.interfaces;
             this.minOccurrences = componentInstance.minOccurrences;
             this.maxOccurrences = componentInstance.maxOccurrences;
+            this.instanceCount = componentInstance.instanceCount;
         }
     }