Skip to content

Commit

Permalink
Fix: Fix issue #9 Missing rows in tables
Browse files Browse the repository at this point in the history
  • Loading branch information
davisagli committed Oct 27, 2022
1 parent ff9a252 commit 495cadc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/converters/slate.js
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ const slateTableBlock = (elem) => {
const cellValue = Array.from(cell.childNodes).map(deserialize);
cells.push(createCell(cellType, cellValue));
}
rows.push({ cells });
rows.push({ key: getId(), cells });
}
}
}
Expand Down

0 comments on commit 495cadc

Please sign in to comment.