Skip to content

Commit

Permalink
fix: use mouseup instead of click
Browse files Browse the repository at this point in the history
  • Loading branch information
daiyam committed Apr 29, 2023
1 parent c6bb6e3 commit 7f417eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/component/bookmarkTile/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -548,7 +548,7 @@ const BookmarkTile = function({
} else {
this.control.disable();

this.element.content.link.addEventListener('click', () => {
this.element.content.link.addEventListener('mouseup', () => {
this.element.content.link.blur();
});
}
Expand Down

0 comments on commit 7f417eb

Please sign in to comment.