fix(core): unwrap connection line status ref (#1962)

* fix(core): unwrap connection line status ref

Signed-off-by: braks <78412429+bcakmakoglu@users.noreply.github.com>

* chore(changeset): add

Signed-off-by: braks <78412429+bcakmakoglu@users.noreply.github.com>

---------

Signed-off-by: braks <78412429+bcakmakoglu@users.noreply.github.com>
This commit is contained in:
Braks
2025-09-22 11:18:29 +02:00
parent f3dc522618
commit 7729eff1f0
2 changed files with 6 additions and 1 deletions

View File

@@ -0,0 +1,5 @@
---
"@vue-flow/core": patch
---
Unwrap connection line status ref in the connection line component to correctly append the class name.

View File

@@ -145,7 +145,7 @@ const ConnectionLine = defineComponent({
})
: h('path', {
'd': dAttr,
'class': [connectionLineOptions.value.class, connectionStatus, 'vue-flow__connection-path'],
'class': [connectionLineOptions.value.class, connectionStatus.value, 'vue-flow__connection-path'],
'style': {
...connectionLineStyle.value,
...connectionLineOptions.value.style,