feat: Added unchecked room highlighting. Resolves #11

This commit is contained in:
2025-06-03 13:23:58 +02:00
parent 0c60f39152
commit d4c7084820
4 changed files with 4 additions and 4 deletions

View File

@@ -11,7 +11,7 @@ import { AdminCommService } from '../../admin-comm.service';
})
export class AttendenceSummaryComponent implements OnInit {
data: MatTableDataSource<{room: string, hours: string[], notes: string}> = new MatTableDataSource<{room: string, hours: string[], notes: string}>();
data: MatTableDataSource<{room: string, hours: string[], notes: string, auto: boolean}> = new MatTableDataSource<{room: string, hours: string[], notes: string, auto: boolean}>();
collumns = ['room', 'hours', 'actions']
constructor (private toolbar: ToolbarService, private router: Router, private route: ActivatedRoute, private ac: AdminCommService) {