diff --git a/client/src/components/Workflow/List/WorkflowCard.vue b/client/src/components/Workflow/List/WorkflowCard.vue index 585ba221b81e..493856d82796 100644 --- a/client/src/components/Workflow/List/WorkflowCard.vue +++ b/client/src/components/Workflow/List/WorkflowCard.vue @@ -27,11 +27,13 @@ interface Props { workflow: any; gridView?: boolean; publishedView?: boolean; + showActions?: boolean; } const props = withDefaults(defineProps(), { gridView: false, publishedView: false, + showActions: true, }); const emit = defineEmits<{ @@ -132,6 +134,7 @@ async function onTagClick(tag: string) { - + @@ -169,15 +172,14 @@ async function onTagClick(tag: string) {