From 83730d89fd20ef99a5042475ca8da24f86eafd4e Mon Sep 17 00:00:00 2001 From: quacksouls <66396308+quacksouls@users.noreply.github.com> Date: Mon, 7 Nov 2022 09:27:40 +1100 Subject: [PATCH] UI: use newline to separate sentences in popup message (#188) --- src/Work/CreateProgramWork.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Work/CreateProgramWork.ts b/src/Work/CreateProgramWork.ts index c79a03a22..292f56bc9 100644 --- a/src/Work/CreateProgramWork.ts +++ b/src/Work/CreateProgramWork.ts @@ -85,7 +85,7 @@ export class CreateProgramWork extends Work { `You've finished creating ${programName}!`, "The new program can be found on your home computer.", ]; - dialogBoxCreate(lines.join("
")); + dialogBoxCreate(lines.join("\n")); } if (!Player.getHomeComputer().programs.includes(programName)) {