fantasy-ngzorro 1.3.18 → 1.3.19

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.
@@ -3716,7 +3716,7 @@
3716
3716
  for (var j = i - 1; j >= 0; j--) {
3717
3717
  if (this.formList[j].totalWidth) {
3718
3718
  this.formList[i].totalWidth = this.formList[j].totalWidth + (this.formList[i].width || 1);
3719
- if ((this.formList[j].totalWidth + this.formList[i].width) > step && this.formList[j].totalWidth <= step) {
3719
+ if ((this.formList[j].totalWidth + (this.formList[i].width || 1)) > step && this.formList[j].totalWidth <= step) {
3720
3720
  step = step + 4;
3721
3721
  this.formList[i].isRowFirst = 1;
3722
3722
  }