docxmlater 9.5.23 → 9.5.26

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.
@@ -3511,7 +3511,7 @@ class Document {
3511
3511
  if (prev instanceof Paragraph_1.Paragraph && next instanceof Paragraph_1.Paragraph) {
3512
3512
  const prevNumbering = prev.getNumbering();
3513
3513
  const nextNumbering = next.getNumbering();
3514
- if (prevNumbering && nextNumbering && prevNumbering.numId === nextNumbering.numId) {
3514
+ if (prevNumbering && nextNumbering) {
3515
3515
  this.bodyElements.splice(bi, 1);
3516
3516
  bi--;
3517
3517
  listItemBlanksRemoved++;
@@ -3530,7 +3530,7 @@ class Document {
3530
3530
  continue;
3531
3531
  const prevNumbering = prev?.getNumbering();
3532
3532
  const nextNumbering = next?.getNumbering();
3533
- if (prevNumbering && nextNumbering && prevNumbering.numId === nextNumbering.numId) {
3533
+ if (prevNumbering && nextNumbering) {
3534
3534
  cell.removeParagraph(ci);
3535
3535
  ci--;
3536
3536
  listItemBlanksRemoved++;