Skip to content

Commit

Permalink
Update index.tsx (#5165)
Browse files Browse the repository at this point in the history
  • Loading branch information
dirheimerb authored Oct 25, 2023
1 parent df2a50b commit 2f94ed8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ function registerKeyTimeStampTracker() {
'keydown',
(event: KeyboardEvent) => {
// Tab
if (event.keyCode === 9) {
if (event.key === 'Tab') {
lastTabKeyDownTimestamp = event.timeStamp;
}
},
Expand Down

2 comments on commit 2f94ed8

@vercel
Copy link

@vercel vercel bot commented on 2f94ed8 Oct 25, 2023

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

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

@vercel
Copy link

@vercel vercel bot commented on 2f94ed8 Oct 25, 2023

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

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

Please sign in to comment.