The administration Jobs page takes a long time to open in sandbox (around 15 seconds). The delay is on GET /api/jobs: the server spends almost all of that time building the response. For every job in the list it loads the latest run for each status and includes full run details (including large args), but the list UI only needs a short summary of the last run (status, time, who started it). We should stop sending that extra run payload on the list endpoint so the page loads quickly.

The administration Jobs page takes a long time to open in sandbox (around 15 seconds). The delay is on GET /api/jobs: the server spends almost all of that time building the response. For every job in the list it loads the latest run for each status and includes full run details (including large args), but the list UI only needs a short summary of the last run (status, time, who started it). We should stop sending that extra run payload on the list endpoint so the page loads quickly.