Fix body undefined
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
9c98cb51ba
commit
c851c8a070
|
|
@ -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}\n${this.body || ''}`;
|
||||
let email = this.email;
|
||||
if (!email || email.length === 0) {
|
||||
email = 'N/A';
|
||||
|
|
|
|||
Loading…
Reference in New Issue