File tree Expand file tree Collapse file tree 1 file changed +4
-7
lines changed
src/components/graph/vueNodes Expand file tree Collapse file tree 1 file changed +4
-7
lines changed Original file line number Diff line number Diff line change 2
2
<div v-if =" renderError" class =" node-error p-2 text-red-500 text-sm" >
3
3
⚠️ Node Slots Error
4
4
</div >
5
- <div v-else class =" lg-node-slots" >
6
- <!-- For now, render slots info as text to see what's there -->
7
- <div v-if =" nodeInfo?.inputs?.length" class =" mb-2" >
8
- <div class =" text-xs text-gray-400 mb-1" >Inputs:</div >
5
+ <div v-else class =" lg-node-slots flex justify-between" >
6
+ <div v-if =" nodeInfo?.inputs?.length" class =" flex flex-col" >
9
7
<div
10
8
v-for =" (input, index) in nodeInfo.inputs"
11
9
:key =" `input-${index}`"
15
13
</div >
16
14
</div >
17
15
18
- <div v-if =" nodeInfo?.outputs?.length" >
19
- <div class =" text-xs text-gray-400 mb-1" >Outputs:</div >
16
+ <div v-if =" nodeInfo?.outputs?.length" class =" flex flex-col ml-auto" >
20
17
<div
21
18
v-for =" (output, index) in nodeInfo.outputs"
22
19
:key =" `output-${index}`"
23
- class =" text-xs text-gray-300"
20
+ class =" text-xs text-gray-300 text-right "
24
21
>
25
22
{{ getOutputName(output, index) }}
26
23
</div >
You can’t perform that action at this time.
0 commit comments