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 89bea09476
commit 7653a109ee
4 changed files with 17 additions and 11 deletions

View File

@ -56,6 +56,6 @@ export class CreateComponent implements OnInit {
}
this.employeeService.create(this.employeeForm.value as Employee).subscribe();
this.dialogRef.close();
this.dialogRef.close(true);
}
}