Add container ready count before total count
[portal/ric-dashboard.git] / webapp-frontend / src / app / caas-ingress / caas-ingress.component.html
index fd22802..5e53fd3 100644 (file)
@@ -19,7 +19,7 @@
 -->
 
 <div class="caas-ingress__section">
-  <h3 class="caas-ingress__header">{{cluster}} Cluster Pods View</h3>
+  <h3 class="rd-global-page-title">{{cluster}} Cluster Pods View</h3>
 
   <table mat-table [dataSource]="dataSource" matSort class="caas-ingress-table mat-elevation-z8">
 
@@ -45,7 +45,7 @@
 
     <ng-container matColumnDef="containers">
       <mat-header-cell *matHeaderCellDef mat-sort-header> Containers </mat-header-cell>
-      <mat-cell *matCellDef="let element"> {{element.spec.containers.length}} </mat-cell>
+      <mat-cell *matCellDef="let element"> {{element.readyCount}}/{{element.spec.containers.length}} </mat-cell>
     </ng-container>
 
     <ng-container matColumnDef="restartCount">