diff --git a/src/components/practice/HintInfo.tsx b/src/components/practice/HintInfo.tsx
index 4dedd1e..1dccefe 100644
--- a/src/components/practice/HintInfo.tsx
+++ b/src/components/practice/HintInfo.tsx
@@ -12,7 +12,7 @@ export function HintInfo({ currentCell }: HintInfoProps) {
const ka = knowledgeAreaMap.get(currentCell.knowledgeAreaId)
if (!ka?.tailoringFactors || ka.tailoringFactors.length === 0) {
return (
-
+
暂无裁剪因素信息
)
@@ -20,21 +20,12 @@ export function HintInfo({ currentCell }: HintInfoProps) {
return (
-
+
敏捷裁剪因素
-
- {ka.tailoringFactors.map((factor, index) => (
-
-
- {factor.title}:
-
-
- {factor.description}
-
-
- ))}
-
+
+ {ka.tailoringFactors.map((factor) => factor.title).join(';')}
+
)
} else {
@@ -43,15 +34,15 @@ export function HintInfo({ currentCell }: HintInfoProps) {
return (
-
+
主要作用
{purpose ? (
-
+
{purpose}
) : (
-
暂无主要作用说明
+
暂无主要作用说明
)}
)
diff --git a/src/pages/ProcessPracticePage.tsx b/src/pages/ProcessPracticePage.tsx
index 89d062a..ffeb051 100644
--- a/src/pages/ProcessPracticePage.tsx
+++ b/src/pages/ProcessPracticePage.tsx
@@ -423,10 +423,10 @@ export default function ProcessPracticePage() {
{/* 底部固定区域(粘附底部,参与文档流) */}
-