Revert "Logs button reopens log window"

This reverts commit 01efd372e95628d419575ade0e6536a458fd61d2.
This commit is contained in:
Gian P
2022-01-16 18:21:02 -03:00
parent 8b69fd7faa
commit e38010a9a4

View File

@ -39,14 +39,12 @@ export function LogBoxManager(): React.ReactElement {
() => () =>
LogBoxEvents.subscribe((script: RunningScript) => { LogBoxEvents.subscribe((script: RunningScript) => {
const id = script.server + "-" + script.filename + script.args.map((x: any): string => `${x}`).join("-"); const id = script.server + "-" + script.filename + script.args.map((x: any): string => `${x}`).join("-");
if (logs.find((l) => l.id === id)) close(id); if (logs.find((l) => l.id === id)) return;
Promise.resolve().then(() => { logs.push({
logs.push({ id: id,
id: id, script: script,
script: script, });
}); rerender();
rerender();
})
}), }),
[], [],
); );