From b5a1bee0b963e3dbe2577366a55e70be62cdb7a1 Mon Sep 17 00:00:00 2001 From: apuente Date: Wed, 2 Oct 2024 12:02:16 +0200 Subject: [PATCH] refs #798 Delete console logs --- .../commands-task/create-task/create-task.component.html | 2 +- .../commands/commands-task/create-task/create-task.component.ts | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/ogWebconsole/src/app/components/commands/commands-task/create-task/create-task.component.html b/ogWebconsole/src/app/components/commands/commands-task/create-task/create-task.component.html index 1c203ee..2111b27 100644 --- a/ogWebconsole/src/app/components/commands/commands-task/create-task/create-task.component.html +++ b/ogWebconsole/src/app/components/commands/commands-task/create-task/create-task.component.html @@ -1,4 +1,4 @@ -

Crear Tarea

+

{{ editing ? 'Editar Tarea' : 'Crear Tarea' }}

diff --git a/ogWebconsole/src/app/components/commands/commands-task/create-task/create-task.component.ts b/ogWebconsole/src/app/components/commands/commands-task/create-task/create-task.component.ts index d0b9a71..4ef8e3a 100644 --- a/ogWebconsole/src/app/components/commands/commands-task/create-task/create-task.component.ts +++ b/ogWebconsole/src/app/components/commands/commands-task/create-task/create-task.component.ts @@ -48,6 +48,8 @@ export class CreateTaskComponent implements OnInit { this.editing = true; this.loadTaskData(this.data.task); } + + console.log(this.data); } loadCommandGroups(): void {