From e38010a9a4c568c848458e61caa17ded53e0cc6d Mon Sep 17 00:00:00 2001 From: Gian P Date: Sun, 16 Jan 2022 18:21:02 -0300 Subject: [PATCH] Revert "Logs button reopens log window" This reverts commit 01efd372e95628d419575ade0e6536a458fd61d2. --- src/ui/React/LogBoxManager.tsx | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/src/ui/React/LogBoxManager.tsx b/src/ui/React/LogBoxManager.tsx index 5dcd4c7ef..0db405108 100644 --- a/src/ui/React/LogBoxManager.tsx +++ b/src/ui/React/LogBoxManager.tsx @@ -39,14 +39,12 @@ export function LogBoxManager(): React.ReactElement { () => LogBoxEvents.subscribe((script: RunningScript) => { const id = script.server + "-" + script.filename + script.args.map((x: any): string => `${x}`).join("-"); - if (logs.find((l) => l.id === id)) close(id); - Promise.resolve().then(() => { - logs.push({ - id: id, - script: script, - }); - rerender(); - }) + if (logs.find((l) => l.id === id)) return; + logs.push({ + id: id, + script: script, + }); + rerender(); }), [], );