Skip to content

Commit

Permalink
Fix mentions popping up in entry (#1243)
Browse files Browse the repository at this point in the history
  • Loading branch information
BentiGorlich authored Nov 25, 2024
1 parent 834e802 commit b710145
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Markdown/CommonMark/ExternalLinkRenderer.php
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ private function generateMentionLinkAttr(MentionLink $link): array

if (MentionType::User === $link->getType() || MentionType::RemoteUser === $link->getType()) {
$data['class'] = $data['class'].' u-url mention--user';
$data['data-action'] = 'mouseover->mentions#user_popup mentions#navigate_user';
$data['data-action'] = 'mouseover->mentions#user_popup mouseout->mentions#user_popup_out mentions#navigate_user';
}

return $data;
Expand Down

0 comments on commit b710145

Please sign in to comment.