avoid jobs with job status cancelled

This commit is contained in:
Beverly Nguyen
2024-08-05 13:06:51 -07:00
parent bc853367d9
commit bdbdaaae8a
2 changed files with 1 additions and 4 deletions

View File

@@ -113,6 +113,7 @@ def service_dashboard(service_id):
"original_file_name": job["original_file_name"],
}
for job in job_response
if job["job_status"] != "cancelled"
]
return render_template(
"views/dashboard/dashboard.html",