diff --git a/client/src/components/Workflow/Published/WorkflowInformation.vue b/client/src/components/Workflow/Published/WorkflowInformation.vue index dc41bdd27c85..8091950d51e3 100644 --- a/client/src/components/Workflow/Published/WorkflowInformation.vue +++ b/client/src/components/Workflow/Published/WorkflowInformation.vue @@ -43,6 +43,13 @@ const fullLink = computed(() => { const userOwned = computed(() => { return userStore.matchesCurrentUsername(props.workflowInfo.owner); }); + +const owner = computed(() => { + if (props.workflowInfo?.creator_deleted_or_purged) { + return "Archived author"; + } + return props.workflowInfo.owner; +});