Fix how the jobs are sent to the front

This commit is contained in:
TheophileDiot 2022-11-19 18:18:45 +01:00
parent 3a0727b5cd
commit 844b06e286

View file

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