cat-qw-lib 0.41.16 → 0.41.17
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
|
@@ -3266,7 +3266,9 @@ class AdminActionFormComponent extends BaseFormComponent {
|
|
|
3266
3266
|
});
|
|
3267
3267
|
}
|
|
3268
3268
|
handleSubmit() {
|
|
3269
|
-
this.record.formFields
|
|
3269
|
+
if (typeof this.record.formFields !== SHARED.STRING) {
|
|
3270
|
+
this.record.formFields = JSON.stringify(this.record.formFields);
|
|
3271
|
+
}
|
|
3270
3272
|
super.handleSubmit();
|
|
3271
3273
|
}
|
|
3272
3274
|
;
|