cat-qw-lib 0.25.2 → 0.25.3
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/fesm2022/cat-qw-lib.mjs
CHANGED
|
@@ -1149,6 +1149,8 @@ class BaseFormComponent {
|
|
|
1149
1149
|
const validateRecords = this.validatorService
|
|
1150
1150
|
? this.validatorService.handleValidateRecords(this.record)
|
|
1151
1151
|
: true;
|
|
1152
|
+
debugger;
|
|
1153
|
+
console.log(this.baseStore?.missingFields);
|
|
1152
1154
|
if (this.baseStore)
|
|
1153
1155
|
this.baseStore.missingFields = [];
|
|
1154
1156
|
if (this.baseQuery) {
|
|
@@ -1162,6 +1164,7 @@ class BaseFormComponent {
|
|
|
1162
1164
|
}
|
|
1163
1165
|
}
|
|
1164
1166
|
});
|
|
1167
|
+
console.log(this.baseStore?.missingFields);
|
|
1165
1168
|
if (this.baseStore && this.baseStore.missingFields.length > 0) {
|
|
1166
1169
|
if (this.baseStore)
|
|
1167
1170
|
this.baseStore.setIsFormSubmitted(new Date());
|