feat: Links in Super notes will get auto-linked when they're pasted or typed

This commit is contained in:
Aman Harwara
2023-01-25 16:45:23 +05:30
parent af6ae81e1d
commit 1b696fa504
2 changed files with 26 additions and 3 deletions

View File

@@ -209,8 +209,7 @@ function useFloatingLinkEditorToolbar(editor: LexicalEditor, anchorElem: HTMLEle
const linkParent = $findMatchingParent(node, $isLinkNode)
const autoLinkParent = $findMatchingParent(node, $isAutoLinkNode)
// We don't want this menu to open for auto links.
if (linkParent != null && autoLinkParent == null) {
if (linkParent != null || autoLinkParent != null) {
setIsLink(true)
} else {
setIsLink(false)