diff options
| author | Fuwn <[email protected]> | 2023-12-30 21:34:38 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2023-12-30 21:34:38 -0800 |
| commit | 60535f8af6054823660009bd66bd8693658becb7 (patch) | |
| tree | 0d412859faa147f93d66b0a843ba060707e7bb16 | |
| parent | feat(tools): add follow fix base (diff) | |
| download | due.moe-60535f8af6054823660009bd66bd8693658becb7.tar.xz due.moe-60535f8af6054823660009bd66bd8693658becb7.zip | |
fix(wrapped): score position highest rated
| -rw-r--r-- | src/lib/Tools/Wrapped.svelte | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/lib/Tools/Wrapped.svelte b/src/lib/Tools/Wrapped.svelte index fdaaf4b7..5b87af7c 100644 --- a/src/lib/Tools/Wrapped.svelte +++ b/src/lib/Tools/Wrapped.svelte @@ -583,8 +583,9 @@ <li> <a href={`https://anilist.co/anime/${anime.id}`} target="_blank"> <MediaTitleDisplay title={anime.title} /> - </a> - {highestRatedMediaPercentage ? `: ${anime.mediaListEntry?.score}%` : ''} + </a>{highestRatedMediaPercentage + ? `: ${anime.mediaListEntry?.score}%` + : ''} </li> {/each} </ol> @@ -610,8 +611,9 @@ <li> <a href={`https://anilist.co/manga/${manga.id}`} target="_blank"> <MediaTitleDisplay title={manga.title} /> - </a> - {highestRatedMediaPercentage ? `: ${manga.mediaListEntry?.score}%` : ''} + </a>{highestRatedMediaPercentage + ? `: ${manga.mediaListEntry?.score}%` + : ''} </li> {/each} </ol> |