From f3539aaf60d57bc2f04b994fa50c5079b16245a2 Mon Sep 17 00:00:00 2001 From: cfdaily Date: Sun, 17 May 2026 13:26:12 +0800 Subject: [PATCH] auto-sync: 2026-05-17 13:26:12 --- src/frontend/src/components/EdictBoard.tsx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/frontend/src/components/EdictBoard.tsx b/src/frontend/src/components/EdictBoard.tsx index 76addca..2398955 100644 --- a/src/frontend/src/components/EdictBoard.tsx +++ b/src/frontend/src/components/EdictBoard.tsx @@ -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 = { pending: 0, claimed: 1, working: 2, review: 3, done: 4,