We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d0a2916 commit a8c58afCopy full SHA for a8c58af
packages/lexical-playground/src/plugins/FloatingLinkEditorPlugin/index.tsx
@@ -366,7 +366,7 @@ function useFloatingLinkEditorToolbar(
366
if ($isRangeSelection(selection)) {
367
const node = getSelectedNode(selection);
368
const linkNode = $findMatchingParent(node, $isLinkNode);
369
- if ($isLinkNode(linkNode) && (payload.metaKey || payload.ctrlKey)) {
+ if ($isLinkNode(linkNode) && (payload.altKey || payload.ctrlKey)) {
370
window.open(linkNode.getURL(), '_blank');
371
return true;
372
}
0 commit comments