issue-77 #105

Merged
sebastian merged 17 commits from issue-77 into master 2024-03-16 10:12:35 +01:00
2 changed files with 3 additions and 2 deletions
Showing only changes of commit e7283c030d - Show all commits

View File

@ -19,7 +19,8 @@
<td mat-cell *matCellDef="let row"> <td mat-cell *matCellDef="let row">
<mat-checkbox (click)="$event.stopPropagation()" <mat-checkbox (click)="$event.stopPropagation()"
(change)="$event ? selection.toggle(row) : null" (change)="$event ? selection.toggle(row) : null"
[checked]="selection.isSelected(row)"> [checked]="selection.isSelected(row)"
[disabled]="row.hasTaskSerie">
</mat-checkbox> </mat-checkbox>
</td> </td>
</ng-container> </ng-container>

View File

@ -48,7 +48,7 @@ export class TaskDashboardComponent implements OnChanges{
return; return;
} }
this.selection.select(...this.datasource.data); this.selection.select(...this.datasource.data.filter(task => !task.hasTaskSerie));
} }