diff --git a/client/src/components/Workflow/List/WorkflowList.vue b/client/src/components/Workflow/List/WorkflowList.vue index f4e0d11ebf4c..3bcb98b99dcd 100644 --- a/client/src/components/Workflow/List/WorkflowList.vue +++ b/client/src/components/Workflow/List/WorkflowList.vue @@ -134,13 +134,13 @@ async function load(overlayLoading = false, silent = false) { const { response, data, error } = await GalaxyApi().GET("/api/workflows", { params: { query: { - sortBy: sortBy.value, - sortDesc: sortDesc.value, + sort_by: sortBy.value, + sort_desc: sortDesc.value, limit: limit.value, offset: offset.value, - filterText: search?.trim(), - showPublished: published.value, - skipStepCounts: true, + search: search?.trim(), + show_published: published.value, + skip_step_counts: true, }, }, });