Skip to content

Commit

Permalink
fix: add selection element back to content only
Browse files Browse the repository at this point in the history
  • Loading branch information
EHadoux committed Jan 31, 2024
1 parent f71d9e1 commit 3d33345
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/Table/Cell.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,9 @@ export class Cell {
const w = new Word(b);
this.content.push(w);
t.push(w.text);
} else if (b?.BlockType === 'SELECTION_ELEMENT') {
const se = new SelectionElement(b);
this.content.push(se);
}
}
}
Expand Down

0 comments on commit 3d33345

Please sign in to comment.