Skip to content

Commit

Permalink
fix(Collectionner): 🐛 Correcting the cover not showing off correctly …
Browse files Browse the repository at this point in the history
…on the search result
  • Loading branch information
Nytuo committed Aug 31, 2023
1 parent 7cd169a commit da71712
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/ContentViewer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,7 @@ function ContentViewer({ provider, TheBook, type, handleAddBreadcrumbs, handleCh
}
>
<img src={
type === "series" ? TheBook.URLCover :
type === "series" ? TheBook.URLCover === null || TheBook.URLCover === "null" ? "Images/fileDefault.png" : TheBook.URLCover : TheBook.URLCover === null || TheBook.URLCover === "null" ? "Images/fileDefault.png" :
TheBook.URLCover.includes("public/FirstImagesOfAll") ? TheBook.URLCover.split("public/")[1] : TheBook.URLCover
} id="ImgColCover" alt="#"
style={
Expand Down

0 comments on commit da71712

Please sign in to comment.