admin Jobs tab: show job controls above the pipeline readiness table
Deploy / lint (push) Successful in 6s
Deploy / test (push) Successful in 35s
Deploy / deploy (push) Successful in 22s

The 500+ row readiness table forced scrolling past it to reach the actual job
controls. Put JobControls first, readiness below.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
2026-06-16 16:41:56 +02:00
parent e5166ed668
commit 7e87a15a12
+1 -1
View File
@@ -41,8 +41,8 @@ export default function AdminPage() {
)}
{activeTab === 'Jobs' && (
<div className="space-y-4">
<PipelineReadinessPanel />
<JobControls />
<PipelineReadinessPanel />
</div>
)}
{activeTab === 'Cleanup' && <DataCleanup />}