Skip to content

Commit

Permalink
Merge branch 'main' into improve-normalize-data-util
Browse files Browse the repository at this point in the history
  • Loading branch information
e11sy authored Jan 18, 2025
2 parents e2472ba + bbc46d5 commit 7ba9701
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ListTabulator/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -402,7 +402,7 @@ export default class ListTabulator<Renderer extends ListRenderer> {
// get subitems.
const subItems = subItemsWrapper ? getPastedItems(subItemsWrapper) : [];
// get text content of the li element.
const content = child.firstChild?.textContent ?? '';
const content = child.innerHTML ?? '';

return {
content,
Expand Down

0 comments on commit 7ba9701

Please sign in to comment.