From eea81cfa164c6aa120764a8ef88c37a7e93fd1e6 Mon Sep 17 00:00:00 2001 From: MidnightCrowing <110297461+MidnightCrowing@users.noreply.github.com> Date: Wed, 12 Jun 2024 01:14:33 +0800 Subject: [PATCH] fix: home page tab loading animation issues (#827) --- src/contentScripts/views/Home/Home.vue | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/contentScripts/views/Home/Home.vue b/src/contentScripts/views/Home/Home.vue index ece480b4..66434565 100644 --- a/src/contentScripts/views/Home/Home.vue +++ b/src/contentScripts/views/Home/Home.vue @@ -118,6 +118,9 @@ function handleChangeTab(tab: HomeTab) { handleThrottledBackToTop(settings.value.useSearchPageModeOnHomePage ? 510 : 0) } + if (tabContentLoading.value) + toggleTabContentLoading(false) + activatedPage.value = tab.page }