From 27da781029eb44b531d5fc07dd983196339d71af Mon Sep 17 00:00:00 2001 From: AustinMroz Date: Sat, 14 Feb 2026 10:05:32 -0800 Subject: [PATCH] Fix labels on output slots in vue mode (#8846) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Vue output slots were not respecting the `slot.label`. As a result, a renamed subgraph output slot would still display the original name when in vue mode. ┆Issue is synchronized with this [Notion page](https://www.notion.so/PR-8846-Fix-labels-on-output-slots-in-vue-mode-3066d73d3650811c986cffee03f56ac2) by [Unito](https://www.unito.io) --- src/renderer/extensions/vueNodes/components/OutputSlot.vue | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/renderer/extensions/vueNodes/components/OutputSlot.vue b/src/renderer/extensions/vueNodes/components/OutputSlot.vue index 7f0e19e828..31fea03d9f 100644 --- a/src/renderer/extensions/vueNodes/components/OutputSlot.vue +++ b/src/renderer/extensions/vueNodes/components/OutputSlot.vue @@ -7,7 +7,11 @@ v-if="!props.dotOnly && !hasNoLabel" class="truncate text-node-component-slot-text" > - {{ slotData.localized_name || (slotData.name ?? `Output ${index}`) }} + {{ + slotData.label || + slotData.localized_name || + (slotData.name ?? `Output ${index}`) + }}