Don't require email for balloon
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
ad9ec5e7c6
commit
e66a014572
|
|
@ -44,7 +44,10 @@ export class BalloonComponent implements OnInit {
|
||||||
if (this.errorMessages.length > 0){ return; }
|
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}`;
|
||||||
const email = this.email || ' ';
|
let email = this.email;
|
||||||
|
if (!email || email.length === 0) {
|
||||||
|
email = 'N/A';
|
||||||
|
}
|
||||||
|
|
||||||
this.submitButtonText = "Please Wait...";
|
this.submitButtonText = "Please Wait...";
|
||||||
this.submitButtonDisabled = true;
|
this.submitButtonDisabled = true;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue