From 0a828471bd4bc75c65a6f81ef91bc9408380760a Mon Sep 17 00:00:00 2001 From: Laurent Peuch Date: Mon, 3 Sep 2018 07:10:42 +0200 Subject: [PATCH] [enh] broadcast job deletation to single job page --- run.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run.py b/run.py index 2892f94..5e6c579 100644 --- a/run.py +++ b/run.py @@ -428,7 +428,7 @@ async def api_delete_job(request, job_id): await broadcast({ "action": "delete_job", "data": data, - }, "jobs") + }, ["jobs", f"job-{job_id}"]) return response.text("ok")