Skip to content

Commit

Permalink
Merge pull request #18247 from itisAliRH/workflow-allow-bookmark-public
Browse files Browse the repository at this point in the history
[24.1] Allow bookmarking public workflows
  • Loading branch information
mvdbeek authored May 29, 2024
2 parents a2b03ac + 067f6df commit 36a9d13
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client/src/components/Workflow/WorkflowActions.vue
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ async function onDelete() {
const actions: ComputedRef<(AAction | BAction)[]> = computed(() => {
return [
{
condition: !props.workflow.deleted && !shared.value && !props.workflow.show_in_tool_panel,
condition: !props.workflow.deleted && !props.workflow.show_in_tool_panel,
class: "workflow-bookmark-button-add",
component: "async",
title: "Add bookmarks",
Expand All @@ -137,7 +137,7 @@ const actions: ComputedRef<(AAction | BAction)[]> = computed(() => {
action: () => onToggleBookmark(true),
},
{
condition: !props.workflow.deleted && !shared.value && props.workflow.show_in_tool_panel,
condition: !props.workflow.deleted && props.workflow.show_in_tool_panel,
class: "workflow-bookmark-button-remove",
component: "async",
title: "Remove bookmark",
Expand Down

0 comments on commit 36a9d13

Please sign in to comment.