From cd043d093f9ceb88153ae32d57c0b3047a96b94c Mon Sep 17 00:00:00 2001 From: John O'Keefe Date: Fri, 6 Jun 2025 23:25:08 -0400 Subject: [PATCH] fixed issue where tags would not reload after submit --- frontend/src/helperComponents/Anime.svelte | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frontend/src/helperComponents/Anime.svelte b/frontend/src/helperComponents/Anime.svelte index a70d4d8..f723655 100644 --- a/frontend/src/helperComponents/Anime.svelte +++ b/frontend/src/helperComponents/Anime.svelte @@ -216,6 +216,8 @@ /* TODO in future when you inevitably add tags to typescript, until Anilist fixes the api bug where tags break the SaveMediaListEntry return, you'll want to use this delete line delete value.data.MediaList.media.tags */ + value.data.MediaList.media.tags = + currentAniListAnime.data.MediaList.media.tags; aniListAnime.update((newValue) => { newValue = value; return newValue; @@ -445,7 +447,6 @@ currentAniListAnime.data.MediaList.media.nextAiringEpisode.episode - 1; } - console.log(currentAniListAnime.data.MediaList.media);