From 4c47c0470517bcafacb16eb0649a6ed798e8ed30 Mon Sep 17 00:00:00 2001 From: mvdbeek Date: Sun, 18 Aug 2024 19:11:22 +0200 Subject: [PATCH] Fix https://github.com/galaxyproject/galaxy/issues/17957 --- client/src/components/Workflow/Editor/NodeOutput.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/components/Workflow/Editor/NodeOutput.vue b/client/src/components/Workflow/Editor/NodeOutput.vue index 641c8d8c38f7..d76c17e44345 100644 --- a/client/src/components/Workflow/Editor/NodeOutput.vue +++ b/client/src/components/Workflow/Editor/NodeOutput.vue @@ -300,7 +300,7 @@ const outputDetails = computed(() => { const outputType = collectionType && collectionType.isCollection && collectionType.collectionType ? `output is ${collectionTypeToDescription(collectionType)}` - : `output is dataset`; + : `output is ${terminal.value.type || "dataset"}`; if (isMultiple.value) { if (!collectionType) { collectionType = NULL_COLLECTION_TYPE_DESCRIPTION;