Compare commits

...

1 Commits

Author SHA1 Message Date
Nino
ac16ef7e90 #4691 Small Fixes Customer Create 2024-03-06 16:55:35 +01:00
2 changed files with 1 additions and 2 deletions

View File

@@ -38,7 +38,6 @@
(onInit)="addAddressGroup($event)" (onInit)="addAddressGroup($event)"
(onDestroy)="removeAddressGroup()" (onDestroy)="removeAddressGroup()"
[data]="data?.address" [data]="data?.address"
[tabIndexStart]="nameFormBlock?.tabIndexEnd + 1"
[requiredMarks]="addressRequiredMarks" [requiredMarks]="addressRequiredMarks"
[validatorFns]="addressValidatorFns" [validatorFns]="addressValidatorFns"
[readonly]="readonly" [readonly]="readonly"

View File

@@ -378,7 +378,7 @@ export abstract class AbstractCreateCustomer implements OnInit, OnDestroy {
} catch (error) { } catch (error) {
this.form.enable(); this.form.enable();
setTimeout(() => { setTimeout(() => {
this.addressFormBlock.setAddressValidationError(error.error.invalidProperties); this.deviatingDeliveryAddressFormBlock.setAddressValidationError(error.error.invalidProperties);
}, 10); }, 10);
return; return;