Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: slot display
  • Loading branch information
simula-r committed Nov 18, 2025
commit bff906c3be8150ed5d88c73695fca7df063ee368
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
/>

<!-- Slot Name -->
<div class="relative h-full flex items-center min-w-0 flex-1">
<div class="relative h-full flex items-center min-w-0">
<span
v-if="!dotOnly"
:class="cn('truncate text-xs font-normal lod-toggle', labelClasses)"
Expand Down
4 changes: 2 additions & 2 deletions src/renderer/extensions/vueNodes/components/NodeSlots.vue
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<div v-else :class="cn('flex justify-between min-w-0', unifiedWrapperClass)">
<div
v-if="filteredInputs.length"
:class="cn('flex flex-col min-w-0 flex-1', unifiedDotsClass)"
:class="cn('flex flex-col min-w-0', unifiedDotsClass)"
>
<InputSlot
v-for="(input, index) in filteredInputs"
Expand All @@ -19,7 +19,7 @@

<div
v-if="nodeData?.outputs?.length"
:class="cn('ml-auto flex flex-col min-w-0 flex-1', unifiedDotsClass)"
:class="cn('ml-auto flex flex-col min-w-0', unifiedDotsClass)"
>
<OutputSlot
v-for="(output, index) in nodeData.outputs"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<template>
<div v-if="renderError" class="node-error p-1 text-xs text-red-500">⚠️</div>
<div v-else v-tooltip.right="tooltipConfig" :class="slotWrapperClass">
<div class="relative h-full flex items-center min-w-0 flex-1">
<div class="relative h-full flex items-center min-w-0">
<!-- Slot Name -->
<span
v-if="!dotOnly"
Expand Down
Loading