auto-sync: 2026-05-19 13:59:26

This commit is contained in:
cfdaily
2026-05-19 13:59:26 +08:00
parent 82ad5a1daa
commit c354bf11df
@@ -248,7 +248,7 @@ function ActionCheckpoint({
background: completedSteps.has(s.id) ? '#22c55e' : 'transparent', color: '#fff',
}}>{completedSteps.has(s.id) ? '✓' : ''}</div>
<div style={{ flex: 1 }}>
<div style={{ fontSize: 12, fontWeight: 600, textDecoration: completedSteps.has(s.id) ? 'line-through' : 'none' }}>{s.description}</div>
<div style={{ fontSize: 12, fontWeight: 600, textDecoration: completedSteps.has(s.id) ? 'line-through' : 'none' }}>{s.desc}</div>
{s.command && (
<pre style={{ marginTop: 4, fontSize: 11, padding: '4px 8px', background: '#0d1117', borderRadius: 4, color: '#e6edf3', fontFamily: 'monospace' }}>{s.command}</pre>
)}
@@ -257,12 +257,12 @@ function ActionCheckpoint({
))}
</div>
{/* 验证命令 */}
{cp.verificationCommand && (
{payload.verify_command && (
<div style={{ marginBottom: 14 }}>
<div style={{ fontSize: 11, color: 'var(--muted)', marginBottom: 4 }}></div>
<pre style={{ fontSize: 11, padding: '6px 10px', background: '#0d1117', borderRadius: 6, color: '#e6edf3', fontFamily: 'monospace' }}>{cp.verificationCommand}</pre>
<pre style={{ fontSize: 11, padding: '6px 10px', background: '#0d1117', borderRadius: 6, color: '#e6edf3', fontFamily: 'monospace' }}>{payload.verify_command}</pre>
</div>
)}
)}}
{/* 验证说明 */}
<div style={{ marginBottom: 14 }}>
<div style={{ fontSize: 11, color: 'var(--muted)', marginBottom: 4 }}></div>