Skip to content

Commit

Permalink
Don't show published workflows in workflow activity of workflow editor
Browse files Browse the repository at this point in the history
If we want to do this we need to separate owned and published, then make
a new copy or reference as we insert the public workflow. As it
stands you won't be finding your own workflows, since the public
workflows are far more numerous then any one user's workflows.

Fixes #19265
  • Loading branch information
mvdbeek committed Dec 11, 2024
1 parent f5f2efe commit 722b7c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/src/components/Panels/WorkflowPanel.vue
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ const loadWorkflowsOptions = {
sortBy: "update_time",
sortDesc: true,
limit: 20,
showPublished: true,
showPublished: false,
skipStepCounts: false,
} as const;
Expand Down

0 comments on commit 722b7c4

Please sign in to comment.