#3471 Email entfernen bei klick auf nein

This commit is contained in:
Lorenz Hilpert
2022-10-17 15:51:08 +02:00
parent 3707572bd8
commit a4b4aeed64

View File

@@ -109,6 +109,9 @@ export class CreateP4MCustomerComponent extends AbstractCreateCustomer implement
.afterClosed$.subscribe(async (result: UiModalResult<boolean>) => {
if (result.data) {
this.navigateToUpdatePage(customer);
} else {
this.formData.email = '';
this.cdr.markForCheck();
}
});
}