네트워크 품질 표 헤더와 넘침 수정

This commit is contained in:
seo
2026-07-26 02:16:18 +09:00
parent 466b21e075
commit f9a02ce15a
2 changed files with 4 additions and 2 deletions
+3 -1
View File
@@ -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);