fix: 添加缺失的i18n文本

This commit is contained in:
Baobhan Sith
2025-05-12 10:48:46 +08:00
parent e05f7e5421
commit 2c7e993481
3 changed files with 15 additions and 3 deletions
@@ -384,7 +384,7 @@ const updateCharts = (newStatus: ServerStatusData | null) => {
const roundingFactor = networkRateUnitIsMB.value ? 1 : 10;
const buffer = networkRateUnitIsMB.value ? 1 : 10;
networkChartOptions.value.scales.y.max = Math.ceil(maxNetworkRate / roundingFactor) * roundingFactor + buffer;
}
}
};
watch(() => props.serverStatus, (newStatus) => {