Skip to content

Commit

Permalink
fix(table): do not expand cells in default table
Browse files Browse the repository at this point in the history
  • Loading branch information
singerla committed Dec 13, 2024
1 parent 4d6c1ea commit 7eb8809
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modify/modify-table.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ export class ModifyTable {
modify: ModifyXmlHelper.attribute('val', r),
},
});
if (!alreadyExpanded) {
if (this.params?.expand && !alreadyExpanded) {
this.expandOtherMergedCellsInColumn(c, r);
}
});
Expand Down

0 comments on commit 7eb8809

Please sign in to comment.