We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 003b44f commit aed9fb5Copy full SHA for aed9fb5
packages/core/src/extensions/TableHandles/TableHandlesPlugin.ts
@@ -394,9 +394,7 @@ export class TableHandlesView<
394
(element) => element.tagName === "TD" || element.tagName === "TH"
395
);
396
if (tableCellElements.length === 0) {
397
- throw new Error(
398
- "Could not find table cell element that the mouse cursor is hovering over."
399
- );
+ return;
400
}
401
const tableCellElement = tableCellElements[0];
402
0 commit comments