Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(extension-link): Click handler opens selected link instead of clicked link #3732

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions packages/extension-link/src/helpers/clickHandler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,11 @@ export function clickHandler(options: ClickHandlerOptions): Plugin {
const attrs = getAttributes(view.state, options.type.name)
const link = (event.target as HTMLElement)?.closest('a')

if (link && attrs.href) {
window.open(attrs.href, attrs.target)
const href = link?.href ?? attrs.href
const target = link?.target ?? attrs.target

if (link && href) {
window.open(href, target)

return true
}
Expand Down