From d00fe98bbf92ed8832ed23b992d77d797579adbf Mon Sep 17 00:00:00 2001 From: Fons van der Plas Date: Tue, 13 Aug 2024 00:35:39 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=8C=B8=20fix=20#2755?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/notebook/Notebook.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/notebook/Notebook.jl b/src/notebook/Notebook.jl index 447b42e7af..5cb1b8783f 100644 --- a/src/notebook/Notebook.jl +++ b/src/notebook/Notebook.jl @@ -79,7 +79,7 @@ function _report_business_cells_planned!(notebook::Notebook) Status.report_business_planned!(run_status, :resolve_topology) cell_status = Status.report_business_planned!(run_status, :evaluate) for (i,c) in enumerate(notebook.cells) - c.running = true + c.running = false c.queued = true Status.report_business_planned!(cell_status, Symbol(i)) end