migration

This commit is contained in:
_Bastler
2022-01-21 22:38:31 +01:00
parent 5cf6230005
commit 578e6e6981
36 changed files with 1473 additions and 1012 deletions
@@ -23,8 +23,10 @@ export class VoucherComponent implements OnInit {
ngOnInit(): void {
this.voucherSource.data = this.vouchers;
this.voucherService.get().subscribe((data: any) => {
this.available = data;
this.voucherService.get().subscribe({
next: (data: any) => {
this.available = data;
}
})
}