[backport core/1.35] Fix slot renaming in vue (#7750)

Backport of #7748 to `core/1.35`

Automatically created by backport workflow.

┆Issue is synchronized with this [Notion
page](https://www.notion.so/PR-7750-backport-core-1-35-Fix-slot-renaming-in-vue-2d36d73d365081b29da4ca95ad66572d)
by [Unito](https://www.unito.io)

Co-authored-by: AustinMroz <austin@comfy.org>
This commit is contained in:
Comfy Org PR Bot
2025-12-24 16:29:50 +09:00
committed by GitHub
parent 572137880b
commit 1e85a46603

View File

@@ -43,7 +43,12 @@
)
"
>
{{ slotData.localized_name || slotData.name || `Input ${index}` }}
{{
slotData.label ||
slotData.localized_name ||
slotData.name ||
`Input ${index}`
}}
</span>
</div>
</div>