auto-sync: 2026-05-20 13:21:42
This commit is contained in:
@@ -387,7 +387,6 @@ export default function EdictBoard() {
|
||||
const reviewCount = topLevelTasks.filter(t => t.status === 'review').length;
|
||||
const archivedCount = topLevelTasks.filter(t => t.archived).length;
|
||||
|
||||
if (!selectedProjectId) return <EmptyState hasProject={false} />;
|
||||
if (v2tasksLoading && tasks.length === 0) return <LoadingSkeleton />;
|
||||
|
||||
return (
|
||||
@@ -424,7 +423,8 @@ export default function EdictBoard() {
|
||||
}}
|
||||
>
|
||||
<option value="">📋 全部任务</option>
|
||||
{Object.entries(projects).map(([pid, info]: [string, any]) => (
|
||||
<option value="__general__">📁 一般任务</option>
|
||||
{Object.entries(projects).filter(([pid]) => !pid.startsWith('e2e-')).map(([pid, info]: [string, any]) => (
|
||||
<option key={pid} value={pid}>📁 {info.name || pid}</option>
|
||||
))}
|
||||
</select>
|
||||
|
||||
Reference in New Issue
Block a user