File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/Frontend/src/components/messages2/FlowDiagram Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -225,7 +225,7 @@ const selectedErrorColor = hexToCSSFilter("#e8e6e8").filter;
225
225
<VueFlow :nodes =" nodes" :edges =" edges" :min-zoom =" 0.1" :max-zoom =" 1.2" :only-render-visible-elements =" true" @nodes-initialized =" layoutGraph" >
226
226
<Controls :show-interactive =" false" position =" top-left" class =" controls" />
227
227
<template #node-message =" { id , data }: { id: string ; data : NodeData } " >
228
- <TextEllipses class =" address" :text =" `${data.sendingEndpoint.name}@${data.sendingEndpoint.host}`" v-tippy = " 'Sending Endpoint' " />
228
+ <TextEllipses class =" address" :text =" `${data.sendingEndpoint.name}@${data.sendingEndpoint.host}`" />
229
229
<div class =" node" :class =" { error: data.isError, 'current-message': id === store.state.data.id }" >
230
230
<div class =" node-text" >
231
231
<i
@@ -254,7 +254,7 @@ const selectedErrorColor = hexToCSSFilter("#e8e6e8").filter;
254
254
</div >
255
255
</div >
256
256
</div >
257
- <TextEllipses class =" address" :text =" `${data.receivingEndpoint.name}@${data.receivingEndpoint.host}`" v-tippy = " 'Processing Endpoint' " />
257
+ <TextEllipses class =" address" :text =" `${data.receivingEndpoint.name}@${data.receivingEndpoint.host}`" />
258
258
</template >
259
259
</VueFlow >
260
260
</div >
You can’t perform that action at this time.
0 commit comments