From 936b0e59abcbb656e877c07fe5313710eab1baf1 Mon Sep 17 00:00:00 2001 From: ssongliu <73214554+ssongliu@users.noreply.github.com> Date: Wed, 26 Apr 2023 18:56:14 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=E6=A6=82=E8=A7=88?= =?UTF-8?q?=E9=A1=B5=E6=B5=81=E9=87=8F=E6=98=BE=E7=A4=BA=E9=97=AE=E9=A2=98?= =?UTF-8?q?=20(#797)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/views/home/index.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/views/home/index.vue b/frontend/src/views/home/index.vue index c0e10e7c5..2deee084d 100644 --- a/frontend/src/views/home/index.vue +++ b/frontend/src/views/home/index.vue @@ -479,11 +479,11 @@ const loadData = async () => { yDatas: [ { name: i18n.global.t('monitor.up'), - data: netBytesRecvs.value, + data: netBytesSents.value, }, { name: i18n.global.t('monitor.down'), - data: netBytesSents.value, + data: netBytesRecvs.value, }, ], formatStr: 'KB/s',