mirror of
https://github.com/danbulant/Mangades
synced 2026-07-05 11:00:40 +00:00
small fix
This commit is contained in:
parent
672b4b59db
commit
75cb7305d8
2 changed files with 4 additions and 3 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
|
@ -13,4 +13,5 @@ dist
|
||||||
/build
|
/build
|
||||||
.env
|
.env
|
||||||
.env.*
|
.env.*
|
||||||
!.env.example
|
!.env.example
|
||||||
|
.envrc
|
||||||
|
|
@ -546,9 +546,9 @@
|
||||||
{/if}
|
{/if}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{#if relationships.filter(t => t.type === "manga").length}
|
{#if relationships.filter(t => t.type === "manga" && typeof t.attributes !== "undefined").length}
|
||||||
<div>
|
<div>
|
||||||
<RelatedManga on:slideToClosest={() => swiper.slideToClosest()} mangaRelations={relationships.filter(t => t.type === "manga")} />
|
<RelatedManga on:slideToClosest={() => swiper.slideToClosest()} mangaRelations={relationships.filter(t => t.type === "manga" && typeof t.attributes !== "undefined")} />
|
||||||
</div>
|
</div>
|
||||||
{/if}
|
{/if}
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue