@lowcodeunit/applications-flow-common 1.37.105-new-project-page → 1.37.106-new-project-page
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.
- package/esm2020/lib/dialogs/dfs-modifiers-dialog/dfs-modifiers-dialog.component.mjs +3 -1
- package/fesm2015/lowcodeunit-applications-flow-common.mjs +6 -4
- package/fesm2015/lowcodeunit-applications-flow-common.mjs.map +1 -1
- package/fesm2020/lowcodeunit-applications-flow-common.mjs +2 -0
- package/fesm2020/lowcodeunit-applications-flow-common.mjs.map +1 -1
- package/package.json +1 -1
@@ -7034,6 +7034,7 @@ class DFSModifiersDialogComponent {
|
|
7034
7034
|
if (this.DFSModifersFormGroup) {
|
7035
7035
|
this.SaveDisabled =
|
7036
7036
|
!this.DFSModifersFormGroup?.valid ||
|
7037
|
+
!this.DFSModifersFormGroup?.dirty ||
|
7037
7038
|
!this.ModifierDialogForm?.valid;
|
7038
7039
|
}
|
7039
7040
|
else if (this.SelectedModifiersFormGroup) {
|
@@ -7041,6 +7042,7 @@ class DFSModifiersDialogComponent {
|
|
7041
7042
|
!this.SelectedModifiersFormGroup?.valid ||
|
7042
7043
|
!this.SelectedModifiersFormGroup?.dirty;
|
7043
7044
|
}
|
7045
|
+
console.log('Save disabled: ', this.SaveDisabled);
|
7044
7046
|
return this.SaveDisabled;
|
7045
7047
|
}
|
7046
7048
|
IsPreconfigured() {
|