Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
Sahejkm committed May 15, 2024
1 parent dce86c0 commit 8f1efbc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/lexical/src/LexicalUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -768,7 +768,7 @@ export function isTab(
ctrlKey: boolean,
metaKey: boolean,
): boolean {
return key === '9' && !altKey && !ctrlKey && !metaKey;
return key === 'Tab' && !altKey && !ctrlKey && !metaKey;
}

export function isBold(
Expand Down

0 comments on commit 8f1efbc

Please sign in to comment.