Skip to content

Commit

Permalink
Fix delete table... (#1481)
Browse files Browse the repository at this point in the history
  • Loading branch information
tylerjbainbridge authored Mar 17, 2022
1 parent df46bbc commit 81d0776
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/lexical-table/src/LexicalTableSelectionHelpers.js
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ export function applyTableHandlers(
window.addEventListener('mousedown', mouseDownCallback);

tableSelection.listenersToRemove.add(() =>
window.removeEventListener(mouseDownCallback),
window.removeEventListener('mousedown', mouseDownCallback),
);

tableSelection.listenersToRemove.add(
Expand Down

2 comments on commit 81d0776

@vercel
Copy link

@vercel vercel bot commented on 81d0776 Mar 17, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

lexical – ./packages/lexical-website

lexical.dev
www.lexical.dev
lexical-git-main-fbopensource.vercel.app
lexicaljs.com
lexicaljs.org
lexical-fbopensource.vercel.app

@vercel
Copy link

@vercel vercel bot commented on 81d0776 Mar 17, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

lexical-playground – ./packages/lexical-playground

lexical-playground-git-main-fbopensource.vercel.app
lexical-playground-fbopensource.vercel.app
lexical-playground.vercel.app

Please sign in to comment.