From 4d8f138c60f50925a8a991a21aa116c858e6acb3 Mon Sep 17 00:00:00 2001 From: HarmandI Date: Fri, 11 Mar 2022 12:05:28 +0100 Subject: [PATCH] =?UTF-8?q?commentaires=20(fin)=20j'esp=C3=A8re!?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/app/components/to-do-list/to-do-list.component.ts | 2 +- src/app/models/tache.ts | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/app/components/to-do-list/to-do-list.component.ts b/src/app/components/to-do-list/to-do-list.component.ts index 15ae91a..c4590b5 100644 --- a/src/app/components/to-do-list/to-do-list.component.ts +++ b/src/app/components/to-do-list/to-do-list.component.ts @@ -50,7 +50,7 @@ export class ToDoListComponent implements OnInit { //ajouter tache par l'id de son parent todoList addTache(idTodoList: number) { //idTodoList id que la todoList que l'on récupère - console.log(idTodoList); + //console.log(idTodoList); //permet de construire l'objet à passer en base const tache: Tache = { id: 0, diff --git a/src/app/models/tache.ts b/src/app/models/tache.ts index 4326f65..77f5b7f 100644 --- a/src/app/models/tache.ts +++ b/src/app/models/tache.ts @@ -6,5 +6,7 @@ export interface Tache { id : number, texte: string, etat : boolean, - editing : boolean + editing : boolean// editing n'existe pas dans la BDD, + //c'est juste un état dont on a besoin dans le front pour pouvoir transformer les tâches et + // le titre des todo en input }