fix: bound formatter memory and improve operations workflows

This commit is contained in:
hectorzhao
2026-09-08 12:46:15 +08:00
parent 50ae37242b
commit 2c228a94e1
27 changed files with 4013 additions and 1230 deletions
+3 -1
View File
@@ -471,7 +471,9 @@ export function AdminReportTasksPage() {
onChange={(event) => setStatus(event.target.value)}
options={[
{ label: '全部状态', value: 'all' },
...Object.entries(statusMeta).map(([value, meta]) => ({ label: meta.label, value })),
...Object.entries(statusMeta)
.filter(([value]) => !['exporting', 'rejected'].includes(value))
.map(([value, meta]) => ({ label: meta.label, value })),
]}
value={status}
/>