From 697bc4e87ed86f9342fca8a7c6c9758d9fd18703 Mon Sep 17 00:00:00 2001 From: Peter York Date: Mon, 30 Sep 2024 12:21:44 +0100 Subject: [PATCH] re-remove `.focus()` --- src/routes/planning/report/Report.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/routes/planning/report/Report.svelte b/src/routes/planning/report/Report.svelte index 73eaa4c614..17671b163c 100644 --- a/src/routes/planning/report/Report.svelte +++ b/src/routes/planning/report/Report.svelte @@ -5,7 +5,7 @@ import { base } from "$app/paths"; function openReportInNewTab() { - window.open(`${base}/planning/report/printable`, "_blank").focus(); + window.open(`${base}/planning/report/printable`, "_blank"); }