Revert hostname in tail titlebar

This commit is contained in:
omuretsu 2023-05-15 20:26:18 -04:00
parent 48396bf8cb
commit ce9ceb05a3

@ -231,7 +231,7 @@ function LogWindow(props: IProps): React.ReactElement {
function title(full = false): string { function title(full = false): string {
const maxLength = 30; const maxLength = 30;
const t = `${script.server}: ${script.filename} ${script.args.join(" ")}`; const t = `${script.filename} ${script.args.join(" ")}`;
if (full || t.length <= maxLength) { if (full || t.length <= maxLength) {
return t; return t;
} }