From f0e54f75d482c83125c28d94a5655fb76834c798 Mon Sep 17 00:00:00 2001 From: Minamiyama Date: Thu, 25 Sep 2025 09:07:36 +0800 Subject: [PATCH] =?UTF-8?q?fix(visualization):=20=E4=BF=AE=E6=AD=A3?= =?UTF-8?q?=E5=86=85=E8=BE=B9=E8=B7=9D=E6=A8=A1=E5=BC=8F=E7=BF=BB=E8=AF=91?= =?UTF-8?q?=E9=94=AE=E5=90=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 将`shorthand_mode_${item}`修改为`inner_padding_shorthand_mode_${item}`以匹配实际翻译键名 --- .../component-background/BackgroundOverallCommon.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/core-frontend/src/components/visualization/component-background/BackgroundOverallCommon.vue b/core/core-frontend/src/components/visualization/component-background/BackgroundOverallCommon.vue index aeed30c595..0082a35c07 100644 --- a/core/core-frontend/src/components/visualization/component-background/BackgroundOverallCommon.vue +++ b/core/core-frontend/src/components/visualization/component-background/BackgroundOverallCommon.vue @@ -354,7 +354,7 @@ const state = reactive({ }) const paddingModes = Object.values(ShorthandMode).map(item => ({ - label: t(`visualization.shorthand_mode_${item}`), + label: t(`visualization.inner_padding_shorthand_mode_${item}`), value: item })) as { label: string; value: ShorthandMode }[]