update task functionality

This commit is contained in:
2025-05-18 16:34:49 +02:00
parent 1f21924805
commit 6e07d44733
4 changed files with 14 additions and 4 deletions

View File

@@ -15,7 +15,7 @@
<mat-icon>filter_alt</mat-icon>
</div>
<div class="list">
<div class="task" *ngFor="let task of tasks$ | async">
<div class="task" (click)="updateTask(task.id)" *ngFor="let task of tasks$ | async">
<button>Done</button>
<div class="name">{{ task.name }}</div>
<div