Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Remove unused allTasksSorted
  • Loading branch information
benceruleanlu committed Dec 14, 2025
commit eb5327b4aa49fc09742c3341987e0805dc6fb206
3 changes: 0 additions & 3 deletions src/composables/queue/useJobList.ts
Original file line number Diff line number Diff line change
Expand Up @@ -182,8 +182,6 @@ export function useJobList() {
]
return all.sort((a, b) => b.queueIndex - a.queueIndex)
})
// Backward-compatible alias used by existing tests/consumers.
const allTasksSorted = orderedTasks

const tasksWithJobState = computed<TaskWithState[]>(() =>
orderedTasks.value.map((task) => ({
Expand Down Expand Up @@ -277,7 +275,6 @@ export function useJobList() {
})

return {
allTasksSorted,
orderedTasks,
jobItems,
groupedJobItems,
Expand Down
Loading