Fix: Optimize the style of the personal center sidebar component #9869 (#10723)

### What problem does this PR solve?

fix: Optimize the style of the personal center sidebar component

### Type of change

- [x] Bug Fix (non-breaking change which fixes an issue)
This commit is contained in:
chanx
2025-10-22 16:55:16 +08:00
committed by GitHub
parent 4d1255b231
commit 318cb7d792
14 changed files with 784 additions and 127 deletions

View File

@ -345,10 +345,10 @@ export const useSummaryInfo = (
const { output_format, parse_method } = setups;
const res = [];
if (parse_method) {
res.push(`${t('dataflow.parserMethod')}: ${parse_method}`);
res.push(`${t('dataflowParser.parserMethod')}: ${parse_method}`);
}
if (output_format) {
res.push(`${t('dataflow.outputFormat')}: ${output_format}`);
res.push(`${t('dataflowParser.outputFormat')}: ${output_format}`);
}
return res.join(' ');
}