From 42984a4d33345551185e8fd09f80aee5dbe214bc Mon Sep 17 00:00:00 2001 From: Hakadao Date: Mon, 30 Dec 2024 11:41:20 +0800 Subject: [PATCH] fix(history): "Loading..." cannot be closed (#1221) close #1221 --- src/contentScripts/views/History/History.vue | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/contentScripts/views/History/History.vue b/src/contentScripts/views/History/History.vue index 738af5f9..0f4b23f8 100644 --- a/src/contentScripts/views/History/History.vue +++ b/src/contentScripts/views/History/History.vue @@ -81,6 +81,7 @@ function getHistoryList() { getHistoryList() } } + }).finally(() => { isLoading.value = false }) } @@ -105,6 +106,7 @@ function searchHistoryList() { noMoreContent.value = false } + }).finally(() => { isLoading.value = false }) }