Fix availability change bug

This commit is contained in:
Matteo Gheza 2021-12-26 21:32:54 +01:00
parent 34fca234f0
commit aceb25c4c8
1 changed files with 2 additions and 1 deletions

View File

@ -17,8 +17,9 @@ export class ListComponent implements OnInit {
this.api.post("availability", {
id: id,
available: available
}).then((response) => {
this.table.loadTableData();
});
this.table.loadTableData();
}
ngOnInit(): void {