taxtank-core 0.30.45 → 0.30.46

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.
@@ -17170,7 +17170,7 @@ class XlsxService {
17170
17170
  };
17171
17171
  tables.forEach((data) => {
17172
17172
  // add caption for the current table
17173
- xlsx.utils.sheet_add_aoa(worksheet, [[data.caption.innerText]], { origin: -1 });
17173
+ xlsx.utils.sheet_add_aoa(worksheet, [[data.caption?.innerText]], { origin: -1 });
17174
17174
  // add table table data to the worksheet
17175
17175
  xlsx.utils.sheet_add_dom(worksheet, data, { origin: -1, raw: true });
17176
17176
  // set empty row after current table