We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fc38923 commit f53c32fCopy full SHA for f53c32f
1 file changed
frontend/components/Bookmark/BookmarkCard.tsx
@@ -254,6 +254,10 @@ export default function BookmarkCard({ bookmark }: Readonly<BookmarkProp>) {
254
<button
255
key={tag}
256
onClick={() => deleteTag(tag)}
257
+ onContextMenu={(e) => {
258
+ e.preventDefault();
259
+ deleteTag(tag);
260
+ }}
261
type="button"
262
className={style.pillButton}
263
data-testid={`${tag}-tag-${bookmark.id}-bk`}
0 commit comments