From 3e6ce5566310030fd37c001d6e63bda3e6e382f3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=96=87=E8=96=87=E5=AE=89?= Date: Wed, 11 Mar 2026 20:11:49 +0800 Subject: [PATCH] 1 --- frontend/src/components/GlobalConfig.jsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frontend/src/components/GlobalConfig.jsx b/frontend/src/components/GlobalConfig.jsx index 86cc5ce..dd44ffa 100644 --- a/frontend/src/components/GlobalConfig.jsx +++ b/frontend/src/components/GlobalConfig.jsx @@ -169,7 +169,8 @@ const ConfigItem = ({ label, config, onUpdate, disabled }) => { ]) const isPctLike = PCT_LIKE_KEYS.has(label) const isNumberAsIs = NUMBER_AS_IS_KEYS.has(label) - const displayLabel = KEY_LABELS[label] || label + const baseLabel = KEY_LABELS[label] + const displayLabel = baseLabel ? `${baseLabel} (${label})` : label const formatPercent = (n) => { if (typeof n !== 'number' || isNaN(n)) return ''