diff --git a/src/frontend/src/components/EdictBoard.tsx b/src/frontend/src/components/EdictBoard.tsx index 1643e3c..7bb2e01 100644 --- a/src/frontend/src/components/EdictBoard.tsx +++ b/src/frontend/src/components/EdictBoard.tsx @@ -423,11 +423,40 @@ export default function EdictBoard() { }} > - + + {Object.entries(projects).filter(([pid]) => !pid.startsWith('_') && pid !== '__general__').map(([pid, info]: [string, any]) => ( ))} + {selectedProjectId && !selectedProjectId.startsWith('_') && selectedProjectId !== '__general__' && ( + + )} + {showProjectAction && selectedProjectId && !selectedProjectId.startsWith('_') && ( + setShowProjectAction(false)} + /> + )} + {(['active', 'archived', 'all'] as const).map(f => (