feat: Added unchecked room highlighting. Resolves #11
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user