Add more mocking of API calls
[portal/nonrtric-controlpanel.git] / webapp-frontend / src / app / ei-coordinator / ei-coordinator.component.html
index ada0384..30f1eee 100644 (file)
@@ -21,7 +21,7 @@ limitations under the License.
 <div fxLayout="row">
     <div class="rd-global-page-title">Enrichment Information Coordinator</div>
     <div class="refresh-button">
-        <button mat-icon-button color="primary" aria-label="Button with a refresh icon" (click)="refresh()">
+        <button mat-icon-button color="primary" aria-label="Button with a refresh icon" (click)="refreshTables()">
             <mat-icon>refresh</mat-icon>
         </button>
     </div>
@@ -63,10 +63,14 @@ limitations under the License.
         <th mat-header-cell *matHeaderCellDef> Type ID </th>
         <td mat-cell *matCellDef="let eiJob"> {{this.getEITypeId(eiJob)}} </td>
     </ng-container>
+    <ng-container matColumnDef="owner">
+        <th mat-header-cell *matHeaderCellDef> Owner </th>
+        <td mat-cell *matCellDef="let eiJob"> {{eiJob.owner}} </td>
+    </ng-container>
     <ng-container matColumnDef="targetUri">
         <th mat-header-cell *matHeaderCellDef> Target URI </th>
         <td mat-cell *matCellDef="let eiJob"> {{this.getTargetUri(eiJob)}} </td>
     </ng-container>
-    <tr mat-header-row *matHeaderRowDef="['id', 'typeId', 'targetUri']"></tr>
-    <tr mat-row *matRowDef="let row; columns: ['id', 'typeId', 'targetUri'];"></tr>
+    <tr mat-header-row *matHeaderRowDef="['id', 'typeId', 'owner', 'targetUri']"></tr>
+    <tr mat-row *matRowDef="let row; columns: ['id', 'typeId', 'owner', 'targetUri'];"></tr>
 </table>
\ No newline at end of file