네트워크 품질 표 헤더와 넘침 수정
This commit is contained in:
@@ -174,6 +174,7 @@
|
||||
txErrorsDrops: 'TX Errors / Drops',
|
||||
downloadLine: 'Download',
|
||||
uploadLine: 'Upload',
|
||||
packetsLine: 'Packets',
|
||||
rxPacketsLine: 'RX Packets',
|
||||
txPacketsLine: 'TX Packets',
|
||||
errorsLine: 'Errors',
|
||||
@@ -408,6 +409,7 @@
|
||||
txErrorsDrops: 'TX 오류 / 드롭',
|
||||
downloadLine: '다운로드',
|
||||
uploadLine: '업로드',
|
||||
packetsLine: '패킷',
|
||||
rxPacketsLine: 'RX 패킷',
|
||||
txPacketsLine: 'TX 패킷',
|
||||
errorsLine: '오류',
|
||||
@@ -2616,7 +2618,7 @@
|
||||
const speedKey = direction === 'rx' ? 'rx_mbytes' : 'tx_mbytes';
|
||||
const packetKey = direction === 'rx' ? 'rx_pps' : 'tx_pps';
|
||||
const speedTitle = direction === 'rx' ? t('downloadLine') : t('uploadLine');
|
||||
const packetTitle = direction === 'rx' ? t('rxPacketsLine') : t('txPacketsLine');
|
||||
const packetTitle = t('packetsLine');
|
||||
const totalRow = totals || {};
|
||||
const currentRow = rows.length ? rows[rows.length - 1] : {};
|
||||
const recent = recentNetworkQuality(rows, direction);
|
||||
|
||||
Reference in New Issue
Block a user