@mx-sose-front/mx-sose-graph 1.1.7 → 1.1.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.esm.js +1 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/index.umd.js +1 -1
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/store/graphStore.ts +1 -1
package/dist/index.esm.js
CHANGED
|
@@ -9028,7 +9028,7 @@ const useGraphStore = defineStore(
|
|
|
9028
9028
|
);
|
|
9029
9029
|
const shapeId = ownerPayload?.shapeId;
|
|
9030
9030
|
if (shapeId != null) {
|
|
9031
|
-
const child = shapes.value.find((s2) => s2.id
|
|
9031
|
+
const child = shapes.value.find((s2) => s2.id == shapeId);
|
|
9032
9032
|
if (child) {
|
|
9033
9033
|
expandParentByChild({
|
|
9034
9034
|
shapes: shapes.value,
|