Skip to content

Commit 4e1f141

Browse files
authored
Fix queue tab update issue (#518)
1 parent 0c53ab9 commit 4e1f141

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/sidebar/tabs/QueueSidebarTab.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -158,8 +158,8 @@ const confirmRemoveAll = (event: Event) => {
158158
})
159159
}
160160
161-
const onStatus = () => {
162-
queueStore.update()
161+
const onStatus = async () => {
162+
await queueStore.update()
163163
visibleTasks.value = allTasks.value.slice(0, ITEMS_PER_PAGE)
164164
}
165165

0 commit comments

Comments
 (0)