From 067f6df3efce95392a459d4fe61ae2bc82ad8f08 Mon Sep 17 00:00:00 2001 From: Alireza Heidari Date: Tue, 28 May 2024 18:38:34 +0200 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8:=20allow=20bookmarking=20public=20wor?= =?UTF-8?q?kflows?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- client/src/components/Workflow/WorkflowActions.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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",