From e7fcda19c1a67dde509d1180480a5bce32b3725d Mon Sep 17 00:00:00 2001 From: Arron Chapman Date: Mon, 24 Apr 2023 09:33:16 -0500 Subject: [PATCH] UI: Added hostname to LogBox title (#478) --- src/ui/React/LogBoxManager.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ui/React/LogBoxManager.tsx b/src/ui/React/LogBoxManager.tsx index 94f14591e..b5a3b03b9 100644 --- a/src/ui/React/LogBoxManager.tsx +++ b/src/ui/React/LogBoxManager.tsx @@ -248,7 +248,7 @@ function LogWindow(props: IProps): React.ReactElement { function title(full = false): string { const maxLength = 30; - const t = `${script.filename} ${script.args.map((x: ScriptArg): string => `${x}`).join(" ")}`; + const t = `${script.server}: ${script.filename} ${script.args.join(" ")}`; if (full || t.length <= maxLength) { return t; }