t20-common-lib 0.15.26 → 0.15.27

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "t20-common-lib",
3
- "version": "0.15.26",
3
+ "version": "0.15.27",
4
4
  "description": "T20",
5
5
  "private": false,
6
6
  "main": "dist/index.js",
@@ -513,6 +513,7 @@ export default {
513
513
  const formRef = this.$refs.dynamicForms;
514
514
  if (!formRef || typeof formRef.validate !== "function") {
515
515
  callback(false, this.formData);
516
+ return;
516
517
  }
517
518
  const pass = await new Promise((resolve) => {
518
519
  formRef.validate((valid) => resolve(valid));
@@ -522,6 +523,7 @@ export default {
522
523
  this.scrollToFirstFormError();
523
524
  });
524
525
  callback(false, this.formData);
526
+ return;
525
527
  }
526
528
  const fileUploadTableData = (this.fileUploadTableData || []).filter(
527
529
  (t) => t.beid