This commit is contained in:
Benjamin Lu
2025-12-09 03:19:50 -08:00
parent ae1d6f9021
commit b277cbffa7
2 changed files with 64 additions and 22 deletions

View File

@@ -134,7 +134,7 @@ const showConcurrentIndicator = computed(
() => concurrentWorkflowCount.value > 1
)
const { filteredTasks, groupedJobItems } = useJobList()
const { orderedTasks, groupedJobItems } = useJobList()
const displayedJobGroups = computed(() => groupedJobItems.value)
@@ -153,7 +153,7 @@ const {
galleryActiveIndex,
galleryItems,
onViewItem: openResultGallery
} = useResultGallery(() => filteredTasks.value)
} = useResultGallery(() => orderedTasks.value)
const setExpanded = (expanded: boolean) => {
isExpanded.value = expanded