Skip to content

Commit

Permalink
Use correct query parameters in api/workflows
Browse files Browse the repository at this point in the history
I wonder why my IDE didn't complain...
  • Loading branch information
davelopez committed Aug 6, 2024
1 parent e17b7cc commit 245e6ff
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions client/src/components/Workflow/List/WorkflowList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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,
},
},
});
Expand Down

0 comments on commit 245e6ff

Please sign in to comment.