Using dependency injection inside new-task.component.
All checks were successful
Deploying Website / build (push) Successful in 1m3s

This commit is contained in:
Maxime Delporte
2025-04-22 07:14:12 -03:00
parent b3d2a49ec9
commit 73de5fedfe
3 changed files with 16 additions and 14 deletions

View File

@@ -1,7 +1,7 @@
@if (isAddingTask) {
<app-new-task
(cancel)="onCancelAddTask()"
(add)="onAddTask($event)"
[userId]="user.id"
(close)="onCloseAddTask()"
/>
}