{isZh ? '提示:系统时区保存后,在 Bot 重启后生效。' : 'Tip: timezone changes take effect after the bot restarts.'}
+ {defaultSystemTimezone ? (
+
+ {isZh ? `系统默认值:${defaultSystemTimezone}` : `System default: ${defaultSystemTimezone}`}
+
+ ) : null}
{isZh ? '资源配额' : 'Resource Limits'}
diff --git a/frontend/src/modules/onboarding/components/BotWizardReviewStep.tsx b/frontend/src/modules/onboarding/components/BotWizardReviewStep.tsx
index a0ba3b4..49a1229 100644
--- a/frontend/src/modules/onboarding/components/BotWizardReviewStep.tsx
+++ b/frontend/src/modules/onboarding/components/BotWizardReviewStep.tsx
@@ -36,10 +36,15 @@ export function BotWizardReviewStep({
CPU: {Number(form.cpu_cores) === 0 ? (isZh ? '不限' : 'Unlimited') : form.cpu_cores}
{isZh ? '内存' : 'Memory'}: {Number(form.memory_mb) === 0 ? (isZh ? '不限' : 'Unlimited') : `${form.memory_mb} MB`}
{isZh ? '存储' : 'Storage'}: {Number(form.storage_gb) === 0 ? (isZh ? '不限' : 'Unlimited') : `${form.storage_gb} GB`}
-
{isZh ? '系统时区' : 'System Timezone'}: {form.system_timezone || defaultSystemTimezone}
+
{isZh ? '系统时区' : 'System Timezone'}: {form.system_timezone || '-'}
{ui.channels}: {configuredChannelsLabel}
{ui.tools}: {envEntries.map(([key]) => key).join(', ') || '-'}
+ {defaultSystemTimezone ? (
+
+ {isZh ? `系统默认值:${defaultSystemTimezone}` : `System default: ${defaultSystemTimezone}`}
+
+ ) : null}