intelica-library-ui 0.1.118 → 0.1.119

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.
@@ -3251,7 +3251,10 @@ class HtmlToExcelService {
3251
3251
  };
3252
3252
  }
3253
3253
  }
3254
- startRow += 2;
3254
+ if (isHeaderGood)
3255
+ startRow += 2;
3256
+ else
3257
+ startRow += 1;
3255
3258
  if (showTotalRow) {
3256
3259
  const sums = columns.map(col => {
3257
3260
  if (col.columnName === "")