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; }