This commit is contained in:
Constantin Simonis 2024-12-18 13:56:32 +01:00
parent 5f92ca7461
commit c7de536d5c
Signed by: csimonis
GPG Key ID: 758DD9C506603183

View File

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