diff --git a/ogWebconsole/src/app/components/groups/groups.component.html b/ogWebconsole/src/app/components/groups/groups.component.html
index b61ca4a..d468caf 100644
--- a/ogWebconsole/src/app/components/groups/groups.component.html
+++ b/ogWebconsole/src/app/components/groups/groups.component.html
@@ -9,13 +9,16 @@
Unidad organizativa
-
-
+
apartment
{{ unidad.nombre }}
-
+
+ edit
+ delete
+
diff --git a/ogWebconsole/src/app/components/groups/groups.component.ts b/ogWebconsole/src/app/components/groups/groups.component.ts
index c379d78..54b4fae 100644
--- a/ogWebconsole/src/app/components/groups/groups.component.ts
+++ b/ogWebconsole/src/app/components/groups/groups.component.ts
@@ -40,10 +40,8 @@ export class GroupsComponent implements OnInit {
loadChildrenAndClients(uuid: string): void {
this.dataService.getChildren(uuid).subscribe(
childrenData => {
- console.log('Children data:', childrenData); // Depuración
this.dataService.getClients(uuid).subscribe(
clientsData => {
- console.log('Clients data:', clientsData); // Depuración
const newChildren = [...childrenData, ...clientsData];
if (newChildren.length > 0) {
this.children = newChildren;
diff --git a/ogWebconsole/src/app/components/groups/model.ts b/ogWebconsole/src/app/components/groups/model.ts
index 77c405d..8d52796 100644
--- a/ogWebconsole/src/app/components/groups/model.ts
+++ b/ogWebconsole/src/app/components/groups/model.ts
@@ -12,6 +12,7 @@ export interface UnidadOrganizativa {
id: number;
nombre: string;
uuid: string;
+ type: string;
aulas: Aula[];
}