File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
src/renderer/extensions/vueNodes/components Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change 45
45
<div class =" flex items-center lod-toggle shrink-0" >
46
46
<IconButton
47
47
v-if =" isSubgraphNode"
48
+ v-tooltip.top =" enterSubgraphTooltipConfig"
48
49
size =" sm"
49
50
type =" transparent"
50
51
class =" text-stone-200 dark-theme:text-slate-300"
51
52
data-testid =" subgraph-enter-button"
52
- title =" Enter Subgraph"
53
53
@click.stop =" handleEnterSubgraph"
54
54
@dblclick.stop
55
55
>
@@ -123,6 +123,10 @@ const tooltipConfig = computed(() => {
123
123
return createTooltipConfig (description )
124
124
})
125
125
126
+ const enterSubgraphTooltipConfig = computed (() => {
127
+ return createTooltipConfig (st (' enterSubgraph' , ' Enter Subgraph' ))
128
+ })
129
+
126
130
const headerStyle = computed (() => {
127
131
const colorPaletteStore = useColorPaletteStore ()
128
132
You can’t perform that action at this time.
0 commit comments