From 06b6b5ad0a80c476751e95941c27b539dc5b43fa Mon Sep 17 00:00:00 2001 From: "@changcode" Date: Tue, 10 Aug 2021 09:37:37 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E8=A7=A3=E5=86=B3=E5=86=B2=E7=AA=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- nezha-fronted/src/components/common/bottomBox/bottomBox.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nezha-fronted/src/components/common/bottomBox/bottomBox.vue b/nezha-fronted/src/components/common/bottomBox/bottomBox.vue index 5923888d9..8ff3c7c2b 100644 --- a/nezha-fronted/src/components/common/bottomBox/bottomBox.vue +++ b/nezha-fronted/src/components/common/bottomBox/bottomBox.vue @@ -118,13 +118,13 @@ export default { this.tabs.asset.panel.push(assetSub) this.tabs.asset.alertMessage.push(assetSub) this.tabs.asset.endpoint.push(assetSub) - this.tabs.asset.logs.push(assetSub) + this.tabs.asset.log.push(assetSub) } } else if (this.tabs.asset.panel.find(item => item.prop === assetSub.prop)) { this.tabs.asset.panel = this.tabs.asset.panel.filter(item => item.prop !== assetSub.prop) this.tabs.asset.alertMessage = this.tabs.asset.alertMessage.filter(item => item.prop !== assetSub.prop) this.tabs.asset.endpoint = this.tabs.asset.endpoint.filter(item => item.prop !== assetSub.prop) - this.tabs.asset.logs = this.tabs.asset.logs.filter(item => item.prop !== assetSub.prop) + this.tabs.asset.log = this.tabs.asset.log.filter(item => item.prop !== assetSub.prop) } } }