substituted @ifs and @fors with deprecated ngIf and ngFor

This commit is contained in:
Marta Borgia Leiva 2026-02-11 11:23:55 +01:00
parent 171400f9ca
commit 7202ed8806
15 changed files with 105 additions and 110 deletions

View file

@ -45,6 +45,10 @@ export class TaskItemComponent {
'failed',
];
trackByStatus(_index: number, status: Task['status']): Task['status'] {
return status;
}
onStatusChange(value: Task['status']) {
const previousStatus = this.statusValue;
const nextStatus = value;