From 01ade5f908e937a5fa2eeab8a98d673207f19ea1 Mon Sep 17 00:00:00 2001 From: wood chen Date: Sat, 19 Apr 2025 14:43:15 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=20ServerCard=20=E7=BB=84?= =?UTF-8?q?=E4=BB=B6=EF=BC=8C=E7=AE=80=E5=8C=96=E8=BF=9E=E6=8E=A5=E6=95=B0?= =?UTF-8?q?=E5=92=8C=E8=BF=9B=E7=A8=8B=E6=95=B0=E7=9A=84=E6=98=BE=E7=A4=BA?= =?UTF-8?q?=E6=96=B9=E5=BC=8F=EF=BC=8C=E5=B0=86=20TCP=E3=80=81UDP=20?= =?UTF-8?q?=E5=92=8C=E8=BF=9B=E7=A8=8B=E6=95=B0=E7=9A=84=E6=A0=87=E7=AD=BE?= =?UTF-8?q?=E7=BC=A9=E7=9F=AD=E4=B8=BA=20T=E3=80=81U=20=E5=92=8C=20P?= =?UTF-8?q?=EF=BC=8C=E4=BB=A5=E6=8F=90=E5=8D=87=E4=BF=A1=E6=81=AF=E5=B1=95?= =?UTF-8?q?=E7=A4=BA=E7=9A=84=E7=AE=80=E6=B4=81=E6=80=A7=E5=92=8C=E5=8F=AF?= =?UTF-8?q?=E8=AF=BB=E6=80=A7=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/ServerCard.tsx | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/src/components/ServerCard.tsx b/src/components/ServerCard.tsx index 3283f67..06e9add 100644 --- a/src/components/ServerCard.tsx +++ b/src/components/ServerCard.tsx @@ -420,24 +420,18 @@ export default function ServerCard({ now, serverInfo, cycleStats }: ServerCardPr {/* 连接数与进程数 */}
- {tcp > 0 && (
- TCP: {tcp} + T: {tcp}
- )} - {udp > 0 && (
- UDP: {udp} + U: {udp}
- )} - {process > 0 && (
- {t("serverDetailChart.process")}: {process} + P: {process}
- )}