From 14777e91716d31a059eaea9b13300f86e9bd5e46 Mon Sep 17 00:00:00 2001 From: unknown <34411636+Dandevmt@users.noreply.github.com> Date: Thu, 28 Mar 2024 21:27:06 -0600 Subject: [PATCH] add br after location in body --- Client/src/app/components/balloon/balloon.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Client/src/app/components/balloon/balloon.component.ts b/Client/src/app/components/balloon/balloon.component.ts index 461bbe5..fae5ba5 100644 --- a/Client/src/app/components/balloon/balloon.component.ts +++ b/Client/src/app/components/balloon/balloon.component.ts @@ -43,7 +43,7 @@ export class BalloonComponent implements OnInit { } if (this.errorMessages.length > 0){ return; } - const body = `Location of balloon: ${this.location}\n${this.body || ''}`; + const body = `Location of balloon: ${this.location}
${this.body || ''}`; let email = this.email; if (!email || email.length === 0) { email = 'N/A';