fix bug where tables reload on action cancel (#30)

Reviewed-on: #30
Reviewed-by: Hop In, I Have Puppies AND WiFi <jleibl@noreply@simonis.lol>
Co-authored-by: Constantin Simonis <constantin@simonis.lol>
Co-committed-by: Constantin Simonis <constantin@simonis.lol>
This commit is contained in:
2025-01-09 12:54:02 +00:00
committed by Hop In, I Have Puppies AND WiFi
parent dc4c02e0d7
commit 14cd210a05
4 changed files with 17 additions and 11 deletions

View File

@ -31,6 +31,6 @@ export class DeleteComponent {
deleteEmployee(id: number) {
this.apiService.deleteById(id).subscribe();
this.dialogRef.close()
this.dialogRef.close(true);
}
}