auto-sync: 2026-05-20 13:21:42

This commit is contained in:
cfdaily
2026-05-20 13:21:42 +08:00
parent 7f65d62462
commit 3c71bf898d
+2 -2
View File
@@ -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>