diff --git a/src/components/sidebar/tabs/QueueSidebarTab.vue b/src/components/sidebar/tabs/QueueSidebarTab.vue index d41b6c2f8b..d815331598 100644 --- a/src/components/sidebar/tabs/QueueSidebarTab.vue +++ b/src/components/sidebar/tabs/QueueSidebarTab.vue @@ -158,8 +158,8 @@ const confirmRemoveAll = (event: Event) => { }) } -const onStatus = () => { - queueStore.update() +const onStatus = async () => { + await queueStore.update() visibleTasks.value = allTasks.value.slice(0, ITEMS_PER_PAGE) }