mirror of
https://github.com/a-mayb3/KanbanCloneAngular.git
synced 2026-03-21 18:05:38 +01:00
Added task editing page
This commit is contained in:
parent
ffc79a28dc
commit
69edc4e197
9 changed files with 322 additions and 2 deletions
|
|
@ -28,7 +28,11 @@
|
|||
@if ((project()?.tasks?.length ?? 0) > 0) {
|
||||
<div class="tasks-list">
|
||||
@for (task of project()?.tasks ?? []; track task.id) {
|
||||
<app-task-item [task]="task" (statusChange)="onTaskStatusChange($event)" />
|
||||
<app-task-item
|
||||
[task]="task"
|
||||
[projectId]="project()?.id"
|
||||
(statusChange)="onTaskStatusChange($event)"
|
||||
/>
|
||||
}
|
||||
</div>
|
||||
} @else {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue