From 9258650ca1dbe5dafb0618bb928b3a6843916009 Mon Sep 17 00:00:00 2001 From: ychacon Date: Thu, 11 Feb 2021 15:46:39 +0100 Subject: [PATCH] Adding proper css style to producer table Issue-ID: NONRTRIC-419 Signed-off-by: ychacon Change-Id: Id3d3e092402fe096570cf7e972f3e2c8fcc1a162 --- .../src/app/ei-coordinator/ei-coordinator.component.html | 6 +++--- webapp-frontend/src/app/ei-coordinator/ei-coordinator.component.ts | 2 ++ 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/webapp-frontend/src/app/ei-coordinator/ei-coordinator.component.html b/webapp-frontend/src/app/ei-coordinator/ei-coordinator.component.html index 00ce9ad..1b16b30 100644 --- a/webapp-frontend/src/app/ei-coordinator/ei-coordinator.component.html +++ b/webapp-frontend/src/app/ei-coordinator/ei-coordinator.component.html @@ -31,8 +31,8 @@ limitations under the License.

Producers

- - +
@@ -85,7 +85,7 @@ limitations under the License.

Jobs

- diff --git a/webapp-frontend/src/app/ei-coordinator/ei-coordinator.component.ts b/webapp-frontend/src/app/ei-coordinator/ei-coordinator.component.ts index fbd0be6..45c5d3d 100644 --- a/webapp-frontend/src/app/ei-coordinator/ei-coordinator.component.ts +++ b/webapp-frontend/src/app/ei-coordinator/ei-coordinator.component.ts @@ -182,6 +182,8 @@ export class EICoordinatorComponent implements OnInit { refreshTables() { this.eiJobsDataSource.loadJobs(); + this.jobsDataSource.data = this.eiJobsDataSource.eiJobs(); this.eiProducersDataSource.loadProducers(); + this.producersDataSource.data = this.eiProducersDataSource.eiProducers(); } } -- 2.16.6