diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index ad086b976..420bf30af 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -1,5 +1,11 @@ # @vue-flow/core +## 1.46.5 + +### Patch Changes + +- [#1962](https://github.com/bcakmakoglu/vue-flow/pull/1962) [`34bcf36`](https://github.com/bcakmakoglu/vue-flow/commit/34bcf36301c1c1a40ad67013c607726577a0741d) Thanks [@bcakmakoglu](https://github.com/bcakmakoglu)! - Unwrap connection line status ref in the connection line component to correctly append the class name. + ## 1.46.4 ### Patch Changes diff --git a/packages/core/package.json b/packages/core/package.json index a10a42ec9..24b583139 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@vue-flow/core", - "version": "1.46.4", + "version": "1.46.5", "private": false, "license": "MIT", "author": "Burak Cakmakoglu<78412429+bcakmakoglu@users.noreply.github.com>", diff --git a/packages/core/src/components/ConnectionLine/index.ts b/packages/core/src/components/ConnectionLine/index.ts index 67227e593..854335a88 100644 --- a/packages/core/src/components/ConnectionLine/index.ts +++ b/packages/core/src/components/ConnectionLine/index.ts @@ -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,