mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-11-12 12:40:45 +08:00
fix: 修复概览页流量显示问题 (#797)
This commit is contained in:
parent
6e3923d0da
commit
936b0e59ab
1 changed files with 2 additions and 2 deletions
|
|
@ -479,11 +479,11 @@ const loadData = async () => {
|
||||||
yDatas: [
|
yDatas: [
|
||||||
{
|
{
|
||||||
name: i18n.global.t('monitor.up'),
|
name: i18n.global.t('monitor.up'),
|
||||||
data: netBytesRecvs.value,
|
data: netBytesSents.value,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: i18n.global.t('monitor.down'),
|
name: i18n.global.t('monitor.down'),
|
||||||
data: netBytesSents.value,
|
data: netBytesRecvs.value,
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
formatStr: 'KB/s',
|
formatStr: 'KB/s',
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue