diff --git a/ui/app/components/Connection.vue b/ui/app/components/Connection.vue index 2aa7587e..4b027036 100644 --- a/ui/app/components/Connection.vue +++ b/ui/app/components/Connection.vue @@ -3,7 +3,7 @@
diff --git a/ui/app/components/History.vue b/ui/app/components/History.vue index 668291cf..4b258a02 100644 --- a/ui/app/components/History.vue +++ b/ui/app/components/History.vue @@ -583,7 +583,7 @@ watch(showCompleted, async isShown => { }) onMounted(async () => { - if (showCompleted.value) { + if (showCompleted.value && !paginationInfo.value.isLoaded) { try { await stateStore.loadPaginated('history', 1, config.app.default_pagination, 'DESC', true) } catch (error) { diff --git a/ui/app/components/Simple.vue b/ui/app/components/Simple.vue index 8f64e778..11c65d04 100644 --- a/ui/app/components/Simple.vue +++ b/ui/app/components/Simple.vue @@ -7,8 +7,8 @@ {{ greetingMessage }} What would you like to download? - await refreshQueue()"> + await refreshQueue()"> @@ -273,7 +273,6 @@ const refreshQueue = async (): Promise