diff --git a/src/frontend/src/components/TaskModal.tsx b/src/frontend/src/components/TaskModal.tsx index cf67f87..fb85f19 100644 --- a/src/frontend/src/components/TaskModal.tsx +++ b/src/frontend/src/components/TaskModal.tsx @@ -5,6 +5,7 @@ import { useEffect, useState } from 'react'; import { useStore } from '../store'; import { api } from '../api'; +import CheckpointPanel from './CheckpointPanel'; // ── 常量 ── const STATUS_META: Record = { @@ -422,15 +423,15 @@ export default function TaskModal() { )} - {/* Checkpoint 占位 */} -
- -
-
🛐
-
Checkpoint 功能开发中
-
验证/决策/执行三种检查点将在 v2.7 版本提供
+ {/* Checkpoint 面板(waiting_human 时显示)*/} + {task.status === 'waiting_human' && ( +
+ +
+ loadV2TaskDetail(task.id)} /> +
-
+ )} )} {/* ── 产出 ── */}