diff --git a/packages/editor-ui/src/views/NodeView.vue b/packages/editor-ui/src/views/NodeView.vue index aab13783b2..63d5f3296f 100644 --- a/packages/editor-ui/src/views/NodeView.vue +++ b/packages/editor-ui/src/views/NodeView.vue @@ -1523,14 +1523,13 @@ export default mixins( info.connection.removeOverlay('input-name-label'); } - // @ts-ignore info.connection.addOverlay([ 'Label', { id: 'input-name-label', - label: inputName, + label: `${inputName}`, cssClass: 'connection-input-name-label', - location: 0.8, + location: 1, }, ]); } @@ -1554,7 +1553,7 @@ export default mixins( id: 'output-name-label', label: outputName, cssClass: 'connection-output-name-label', - location: 30, + location: 13, }, ]); } @@ -2681,11 +2680,11 @@ export default mixins(