auto-sync: 2026-05-17 13:26:12

This commit is contained in:
cfdaily
2026-05-17 13:26:12 +08:00
parent 0f26328621
commit f3539aaf60
+6 -6
View File
@@ -8,12 +8,12 @@ import { useStore } from '../store';
// ── 状态管线(5 步线性 + blocked/failed 旁路)──
const PIPELINE_STEPS = [
{ key: 'pending', label: '待认领', icon: '📋' },
{ key: 'claimed', label: '已认领', icon: '👤' },
{ key: 'working', label: '执行中', icon: '⚔️' },
{ key: 'review', label: '审查中', icon: '🔍' },
{ key: 'done', label: '已完成', icon: '✅' },
] as const;
{ key: 'pending', label: '待认领', icon: '📋' as string },
{ key: 'claimed', label: '已认领', icon: '👤' as string },
{ key: 'working', label: '执行中', icon: '⚔️' as string },
{ key: 'review', label: '审查中', icon: '🔍' as string },
{ key: 'done', label: '已完成', icon: '✅' as string },
];
const PIPELINE_ORDER: Record<string, number> = {
pending: 0, claimed: 1, working: 2, review: 3, done: 4,