fix: 修复 MSD 状态卡片 i18n 键名

This commit is contained in:
mofeng-git
2026-05-19 20:44:12 +08:00
parent 8915d36bcf
commit 02bf04ed7f

View File

@@ -493,7 +493,7 @@ const msdDetails = computed<StatusDetail[]>(() => {
? t('statusCard.msdImageMode') ? t('statusCard.msdImageMode')
: t('statusCard.msdDriveMode') : t('statusCard.msdDriveMode')
details.push({ details.push({
label: t('statusCard.mode'), label: t('statusCard.currentMode'),
value: modeDisplay, value: modeDisplay,
status: msd.mode !== 'none' ? 'ok' : undefined status: msd.mode !== 'none' ? 'ok' : undefined
}) })