mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-05-07 14:56:06 +02:00
fix
This commit is contained in:
@@ -258,9 +258,9 @@
|
|||||||
resizeObserver.value.disconnect();
|
resizeObserver.value.disconnect();
|
||||||
resizeObserver.value = null;
|
resizeObserver.value = null;
|
||||||
}
|
}
|
||||||
if (echartsInstance.value) {
|
if (echartsInstance) {
|
||||||
echartsInstance.value.dispose();
|
echartsInstance.dispose();
|
||||||
echartsInstance.value = null;
|
echartsInstance = null;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
@@ -51,7 +51,7 @@ function computeForceOptions(nodes, links) {
|
|||||||
repulsion,
|
repulsion,
|
||||||
edgeLength: [minEdge, maxEdge],
|
edgeLength: [minEdge, maxEdge],
|
||||||
gravity: 0.3,
|
gravity: 0.3,
|
||||||
layoutAnimation: false
|
layoutAnimation: nodes.length < 1000
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -6,7 +6,7 @@
|
|||||||
<el-icon
|
<el-icon
|
||||||
class="rotation-transition"
|
class="rotation-transition"
|
||||||
:class="{
|
:class="{
|
||||||
'is-rotated': !groupInstancesCfg[getGroupId(group)].isCollapsed
|
'is-rotated': !groupInstancesCfg[getGroupId(group)]?.isCollapsed
|
||||||
}"
|
}"
|
||||||
><ArrowRight
|
><ArrowRight
|
||||||
/></el-icon>
|
/></el-icon>
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<template v-if="!groupInstancesCfg[getGroupId(group)].isCollapsed">
|
<template v-if="!groupInstancesCfg[getGroupId(group)]?.isCollapsed">
|
||||||
<div
|
<div
|
||||||
v-for="ref in group"
|
v-for="ref in group"
|
||||||
:key="ref.instance.id"
|
:key="ref.instance.id"
|
||||||
|
|||||||
Reference in New Issue
Block a user