Skip to content

Commit

Permalink
Merge pull request #18720 from mvdbeek/fix_output_hover
Browse files Browse the repository at this point in the history
[24.1] Fix output hover for workflow parameter outputs
  • Loading branch information
mvdbeek authored Aug 20, 2024
2 parents ea35ee5 + 4c47c04 commit 4cc899a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/src/components/Workflow/Editor/NodeOutput.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 4cc899a

Please sign in to comment.