-
Notifications
You must be signed in to change notification settings - Fork 773
Closed
Description
Category
- Bug
Version
Please specify what version of the library you are using: [ 3.10.0 ]
Please specify what version(s) of PowerPoint you are targeting: [Office 2010]
Please specify what web browser you are using: [node.js]
Expected / Desired Behavior / Question
The text should be formatted correctly as it is passed in.
Observed Behavior
The text is duplicated in a table cell when autoPage: true is used and a text array is supplied
Steps to Reproduce
Create a table with the following input to observe the issue.
slide.addTable(
[
[
{
text: "column 1 header",
options: { bold: true },
},
{ text: "column 2 header", options: { bold: true } },
],
[
{
text: [
{ text: "this will be duplicated" },
{ text: "1", options: { superscript: true } },
],
},
{ text: "column 2" },
],
],
{ autoPage: true }
)Or check out my example repo here
Here is an example screen shot to demonstrate what I'm seeing:

Metadata
Metadata
Assignees
Labels
No labels