prosemirror-tables
Advanced tools
Comparing version 0.7.5 to 0.7.6
{ | ||
"name": "prosemirror-tables", | ||
"version": "0.7.5", | ||
"version": "0.7.6", | ||
"description": "ProseMirror's rowspan/colspan tables component", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
@@ -95,3 +95,5 @@ // This file defines a ProseMirror selection subclass that models | ||
} | ||
return new Slice(Fragment.from(rows), 1, 1) | ||
const fragment = this.isColSelection() && this.isRowSelection() ? table : rows; | ||
return new Slice(Fragment.from(fragment), 1, 1) | ||
} | ||
@@ -98,0 +100,0 @@ |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
1014153
19027