add functionality to delete employee button #11

Merged
csimonis merged 8 commits from feature/delete-employee-button into main 2024-12-18 13:02:47 +00:00
Showing only changes of commit cb77d76aa3 - Show all commits

View File

@ -46,7 +46,7 @@ export class EmployeeListComponent implements OnInit{
private readonly deleteDialogue: MatDialog = inject(MatDialog); private readonly deleteDialogue: MatDialog = inject(MatDialog);
private static readonly MAX_RETRIES = 3; private static readonly MAX_RETRIES = 3;
public employees$: Observable<Employee[]>; public employees$: Observable<Employee[]> = of([]);
public readonly displayedColumns: string[] = ['name', 'actions']; public readonly displayedColumns: string[] = ['name', 'actions'];
public ngOnInit(): void { public ngOnInit(): void {