From b3f7c618f06cd5f4d47ea97dc49d69658a38624a Mon Sep 17 00:00:00 2001 From: Fuwn Date: Sat, 2 Dec 2023 06:01:54 -0800 Subject: feat(wrapped): adjust highest rated display --- src/lib/Tools/Wrapped.svelte | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'src/lib/Tools') diff --git a/src/lib/Tools/Wrapped.svelte b/src/lib/Tools/Wrapped.svelte index bfd9bbe0..99a984fd 100644 --- a/src/lib/Tools/Wrapped.svelte +++ b/src/lib/Tools/Wrapped.svelte @@ -32,6 +32,7 @@ let includeRepeats = false; let width = 980; let forceDark = false; + let highestRatedCount = 5; $: { includeMusic = includeMusic; @@ -339,7 +340,7 @@
Highest Rated Anime
    - {#each animeList?.slice(0, 5) as anime} + {#each animeList?.slice(0, highestRatedCount) as anime}
  1. {abbreviate( @@ -370,7 +371,7 @@
    Highest Rated Manga
      - {#each mangaList?.slice(0, 5) as manga} + {#each mangaList?.slice(0, highestRatedCount) as manga}
    1. {abbreviate( @@ -414,6 +415,8 @@ Include music
      Include rewatches & rereads
      Include specials and OVAs
      + Highest rated media + count

      Manual width override -- cgit v1.2.3