diff --git a/client/src/components/Workflow/WorkflowActions.vue b/client/src/components/Workflow/WorkflowActions.vue index 7c709b27aea8..c7422119e868 100644 --- a/client/src/components/Workflow/WorkflowActions.vue +++ b/client/src/components/Workflow/WorkflowActions.vue @@ -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", @@ -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",