chrv-components 1.11.24 → 1.11.25
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
Binary file
|
|
@@ -2533,9 +2533,9 @@ class ChrFormComponent {
|
|
|
2533
2533
|
effect(() => {
|
|
2534
2534
|
const disabled = this.disabled();
|
|
2535
2535
|
if (disabled)
|
|
2536
|
-
this.form().disable();
|
|
2536
|
+
this.form().disable({ emitEvent: false });
|
|
2537
2537
|
else
|
|
2538
|
-
this.form().enable();
|
|
2538
|
+
this.form().enable({ emitEvent: false });
|
|
2539
2539
|
});
|
|
2540
2540
|
}
|
|
2541
2541
|
ngOnInit() {
|