Skip to content

Commit 7eb8809

Browse files
committed
fix(table): do not expand cells in default table
1 parent 4d6c1ea commit 7eb8809

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/modify/modify-table.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ export class ModifyTable {
6060
modify: ModifyXmlHelper.attribute('val', r),
6161
},
6262
});
63-
if (!alreadyExpanded) {
63+
if (this.params?.expand && !alreadyExpanded) {
6464
this.expandOtherMergedCellsInColumn(c, r);
6565
}
6666
});

0 commit comments

Comments
 (0)