improve ux, moved functionality for better ui experience on app and extension.

This commit is contained in:
Bryan Van Deusen
2026-01-26 11:38:51 -05:00
parent 74b1ecf2cf
commit 2a0e37a73d
12 changed files with 369 additions and 78 deletions
+4 -5
View File
@@ -241,11 +241,10 @@ const headers = [
{ title: 'Actions', key: 'actions', width: 100, sortable: false },
]
onMounted(async () => {
await Promise.all([
loadDownloads(),
sourcesStore.fetchSources(),
])
onMounted(() => {
// Load data in background - don't block UI rendering
loadDownloads()
sourcesStore.fetchSources()
})
watch([filterStatus, filterSourceId, filterFromDate, filterToDate], () => {