Skip to content

Commit

Permalink
Merge pull request #44 from Lorg0n/fix/EditTooltipBug
Browse files Browse the repository at this point in the history
Fix / Add Edit Button for Manga and Novel
  • Loading branch information
olexh authored Jun 27, 2024
2 parents b66246d + f2f41d7 commit 4eb660a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions components/manga-card.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ const MangaCard: FC<Props> = ({ manga, ...props }) => {
read={manga.read ? manga.read[0] : undefined}
slug={manga.slug}
content_type="manga"
withContextMenu
href={`/manga/${manga.slug}`}
image={manga.image}
title={manga.title}
Expand Down
1 change: 1 addition & 0 deletions components/novel-card.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ const NovelCard: FC<Props> = ({ novel, ...props }) => {
read={novel.read ? novel.read[0] : undefined}
slug={novel.slug}
content_type="novel"
withContextMenu
href={`/novel/${novel.slug}`}
image={novel.image}
title={novel.title}
Expand Down

0 comments on commit 4eb660a

Please sign in to comment.