diff --git a/ogWebconsole/src/app/components/groups/components/client-tab-view/client-tab-view.component.ts b/ogWebconsole/src/app/components/groups/components/client-tab-view/client-tab-view.component.ts
index 823350f..8f57814 100644
--- a/ogWebconsole/src/app/components/groups/components/client-tab-view/client-tab-view.component.ts
+++ b/ogWebconsole/src/app/components/groups/components/client-tab-view/client-tab-view.component.ts
@@ -65,10 +65,10 @@ export class ClientTabViewComponent {
cell: (client: any) => `${client.organizationalUnit.name}`
},
{
- columnDef: 'createdAt',
- header: 'Fecha de creación',
- cell: (client: any) => `${this.datePipe.transform(client.createdAt, 'dd/MM/yyyy hh:mm:ss')}`
- }
+ columnDef: 'ogLive',
+ header: 'OgLive',
+ cell: (client: any) => `${client.ogLive?.name}`
+ },
];
displayedColumns = [...this.columns.map(column => column.columnDef), 'actions'];
diff --git a/ogWebconsole/src/app/components/groups/shared/clients/edit-client/edit-client.component.html b/ogWebconsole/src/app/components/groups/shared/clients/edit-client/edit-client.component.html
index 1b3d5a1..add15b9 100644
--- a/ogWebconsole/src/app/components/groups/shared/clients/edit-client/edit-client.component.html
+++ b/ogWebconsole/src/app/components/groups/shared/clients/edit-client/edit-client.component.html
@@ -21,7 +21,7 @@
OgLive
- {{ ogLive.uuid }}
+ {{ ogLive.name }}
diff --git a/ogWebconsole/src/app/components/ogboot/ogboot-status/ogboot-status.component.ts b/ogWebconsole/src/app/components/ogboot/ogboot-status/ogboot-status.component.ts
index 424caea..69c2df6 100644
--- a/ogWebconsole/src/app/components/ogboot/ogboot-status/ogboot-status.component.ts
+++ b/ogWebconsole/src/app/components/ogboot/ogboot-status/ogboot-status.component.ts
@@ -32,9 +32,9 @@ export class OgbootStatusComponent implements OnInit {
loadStatus(): void {
this.http.get(`${this.baseUrl}/og-boot/status`).subscribe(data => {
- this.diskUsage = data.disk_usage;
- this.servicesStatus = data.services_status;
- this.installedOglives = data.installed_oglives;
+ this.diskUsage = data.message.disk_usage;
+ this.servicesStatus = data.message.services_status;
+ this.installedOglives = data.message.installed_oglives;
this.diskUsageChartData = [
{