From c954fa03c3ed1b34af037c89f2f11cdc619db9de Mon Sep 17 00:00:00 2001 From: zyh Date: Thu, 26 Oct 2023 10:31:01 +0800 Subject: [PATCH] =?UTF-8?q?NEZ-3266=20fix=EF=BC=9ADashboard=E4=B8=AD,?= =?UTF-8?q?=E5=9C=A8=E4=BB=AA=E8=A1=A8=E7=9B=98=E8=A7=A3=E9=94=81=E7=8A=B6?= =?UTF-8?q?=E6=80=81=E4=B8=8B=E4=BF=AE=E6=94=B9=E8=BD=AE=E6=92=AD=E5=9B=BE?= =?UTF-8?q?=E5=9B=BE=E8=A1=A8=E5=A4=A7=E5=B0=8F=E5=A4=B1=E8=B4=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- nezha-fronted/src/components/chart/chart/chartAutotopology.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nezha-fronted/src/components/chart/chart/chartAutotopology.vue b/nezha-fronted/src/components/chart/chart/chartAutotopology.vue index 6c9a11b1f..a85e7c254 100644 --- a/nezha-fronted/src/components/chart/chart/chartAutotopology.vue +++ b/nezha-fronted/src/components/chart/chart/chartAutotopology.vue @@ -134,7 +134,7 @@ export default { }, resize () { this.allProject.forEach((item, index) => { - this.$refs['topology' + index][0] && this.$refs['topology' + index][0].topoResize() + this.$refs['topology' + index] && this.$refs['topology' + index][0] && this.$refs['topology' + index][0].topoResize('autoTopology' + item.id + (this.isFullscreen ? 'screen' : '')) }) } },