No longer dump the jobs to the front

This commit is contained in:
Théophile Diot 2022-11-20 23:02:38 +01:00 committed by GitHub
parent 719d779e01
commit 7fb61b5ef1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1382,7 +1382,7 @@ def logs_container(container_id):
def jobs():
return render_template(
"jobs.html",
jobs=dumps(db.get_jobs()),
jobs=db.get_jobs(),
dark_mode=app.config["DARK_MODE"],
)