Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix(Tables): require at least one cell in the header
Fixes #4793.

Signed-off-by: Max <[email protected]>
  • Loading branch information
max-nextcloud authored and mejo- committed Mar 12, 2024
commit f7d50b89088a8ea1ff9da0651c671433940803a9
2 changes: 1 addition & 1 deletion src/nodes/Table/TableHeadRow.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import TableRow from './TableRow.js'

export default TableRow.extend({
name: 'tableHeadRow',
content: 'tableHeader*',
content: 'tableHeader+',
allowGapCursor: false,

toMarkdown(state, node) {
Expand Down